Enable new reject box
ci / test (push) Successful in 56s Details
ci / deploy (push) Has been cancelled Details

This commit is contained in:
Hayajiro 2023-11-19 21:08:25 +01:00
parent 1fd83754b3
commit e618d6515a
2 changed files with 24 additions and 1 deletions

View File

@ -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 {
system = "x86_64-linux";
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" = {
sshOpts = [ "-p" "22201" "-o" "StrictHostKeyChecking=no" ];
hostname = "kinda.sus.lol";

View File

@ -10,7 +10,7 @@
};
fileSystems."/home" = {
device = "/dev/disk/by-label/home";
device = "/dev/disk/by-uuid/b18648f1-8147-4b85-a848-3578efa4ce6e";
fsType = "ext4";
};