Compare commits

...

2 commits

Author SHA1 Message Date
236fd61e11
fix jade 2024-10-11 14:21:02 -04:00
a7df680be6
fix name 2024-10-11 14:19:08 -04:00
4 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@ Latest news:
* Web hosting now available, contact an admin to enable * Web hosting now available, contact an admin to enable
* Now supports fetching your ssh key from a url, contact an admin * Now supports fetching your ssh key from a url, contact an admin
* Nova: new UK GPU host! try nova.wolfgirl.systems * Nova: new UK GPU host! try nova.wolfgirl.systems
* Jude: new Kansas City host! try jude.wolfgirl.systems * Jude: new Kansas City host! try jade.wolfgirl.systems
* Alice: new Ashburn host! try alice.wolfgirl.systems * Alice: new Ashburn host! try alice.wolfgirl.systems
*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-* *-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*
''; '';

View file

@ -49,7 +49,7 @@
environment.etc."info" = { environment.etc."info" = {
mode = "0644"; mode = "0644";
text = builtins.readFile ./info/jude; text = builtins.readFile ./info/jade;
}; };
swapDevices = [ { swapDevices = [ {

View file

@ -29,12 +29,12 @@ in
./common ./common
]; ];
}; };
"jude" = { pkgs, ... }: { "jade" = { pkgs, ... }: {
deployment = { deployment = {
targetHost = "jude.wolfgirl.systems"; targetHost = "jade.wolfgirl.systems";
}; };
imports = [ imports = [
./hosts/jude.nix ./hosts/jade.nix
./common ./common
]; ];
}; };