Enable new reject box
This commit is contained in:
parent
1fd83754b3
commit
e618d6515a
23
flake.nix
23
flake.nix
|
@ -70,6 +70,16 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"reject.elmosco.lewd.wtf" = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
specialArgs = { inherit inputs self; };
|
||||||
|
modules = [
|
||||||
|
sops-nix.nixosModules.sops
|
||||||
|
./default.nix
|
||||||
|
./hosts/seedbox/reject/configuration.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
"kinda.sus.lol" = nixpkgs.lib.nixosSystem {
|
"kinda.sus.lol" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs self; };
|
specialArgs = { inherit inputs self; };
|
||||||
|
@ -147,6 +157,19 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"reject.elmosco.lewd.wtf" = {
|
||||||
|
sshOpts = [ "-p" "22113" "-o" "StrictHostKeyChecking=no" ];
|
||||||
|
hostname = "reject.elmosco.lewd.wtf";
|
||||||
|
fastConnection = true;
|
||||||
|
|
||||||
|
profiles.system = {
|
||||||
|
sshUser = "root";
|
||||||
|
path =
|
||||||
|
deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations."reject.elmosco.lewd.wtf";
|
||||||
|
user = "root";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
"kinda.sus.lol" = {
|
"kinda.sus.lol" = {
|
||||||
sshOpts = [ "-p" "22201" "-o" "StrictHostKeyChecking=no" ];
|
sshOpts = [ "-p" "22201" "-o" "StrictHostKeyChecking=no" ];
|
||||||
hostname = "kinda.sus.lol";
|
hostname = "kinda.sus.lol";
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/home" = {
|
fileSystems."/home" = {
|
||||||
device = "/dev/disk/by-label/home";
|
device = "/dev/disk/by-uuid/b18648f1-8147-4b85-a848-3578efa4ce6e";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue