From e618d6515acbba4340958661393f90af5d0c5521 Mon Sep 17 00:00:00 2001 From: Hayajiro Date: Sun, 19 Nov 2023 21:08:25 +0100 Subject: [PATCH] Enable new reject box --- flake.nix | 23 +++++++++++++++++++ .../seedbox/reject/hardware-configuration.nix | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3d35373..176ee56 100644 --- a/flake.nix +++ b/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 { 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"; diff --git a/hosts/seedbox/reject/hardware-configuration.nix b/hosts/seedbox/reject/hardware-configuration.nix index 2912d05..a302498 100644 --- a/hosts/seedbox/reject/hardware-configuration.nix +++ b/hosts/seedbox/reject/hardware-configuration.nix @@ -10,7 +10,7 @@ }; fileSystems."/home" = { - device = "/dev/disk/by-label/home"; + device = "/dev/disk/by-uuid/b18648f1-8147-4b85-a848-3578efa4ce6e"; fsType = "ext4"; };