3 Commits

Author SHA1 Message Date
227bf853ab Add extra SSH configurations to Marauder 2024-12-10 17:17:11 -08:00
e7100daf2f Install blender on marauder 2024-12-08 09:33:40 -08:00
04069f02ec Roughly setup todo-app web server 2024-12-06 17:02:11 -08:00
2 changed files with 17 additions and 0 deletions

View File

@@ -93,6 +93,7 @@
obsidian obsidian
intiface-central intiface-central
prismlauncher prismlauncher
blender
]); ]);
}; };
@@ -102,6 +103,19 @@
dedicatedServer.openFirewall = true; dedicatedServer.openFirewall = true;
}; };
programs.ssh.extraConfig = ''
Host quasar
HostName consortium.chat
IdentityFile ~/.ssh/LightsailDefaultKey-us-west-2.pem
Host monolith
HostName 10.243.210.154
Host fennbox
HostName 10.243.109.199
User fenn
'';
programs.nix-ld = { programs.nix-ld = {
enable = true; enable = true;
}; };

View File

@@ -11,6 +11,7 @@
networking = { networking = {
hostName = "monolith"; hostName = "monolith";
hostId = "44551c32"; hostId = "44551c32";
firewall.allowedTCPPorts = [ 8000 ];
}; };
fileSystems = { fileSystems = {
@@ -44,6 +45,8 @@
beets beets
flac flac
screen screen
rustup
gcc
(callPackage ../marauder/ffcheck.nix { }) (callPackage ../marauder/ffcheck.nix { })
]; ];