diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/default.nix | 11 | ||||
| -rw-r--r-- | hosts/p-body/default.nix | 6 |
2 files changed, 15 insertions, 2 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index 97574c5..7b13c1b 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -45,7 +45,7 @@ in { nixos-hardware.nixosModules.common-gpu-nvidia-nonprime nixos-hardware.nixosModules.common-pc-ssd lanzaboote.nixosModules.lanzaboote - (import "${self}/modules/nixos/virtualisation") + (import "${self}/modules/nixos/virtualisation.nix") ]; }; glados-wsl = { @@ -81,7 +81,16 @@ in { pbodyPassword.file = "${self}/users/_secrets/pbodyPassword.age"; }; }; + nixos.enable = true; + + _module.args.nixinate = { + host = "167.99.145.73"; + sshUser = "root"; + buildOn = "remote"; + substituteOnTarget = true; + hermetic = false; + }; } ]; }; diff --git a/hosts/p-body/default.nix b/hosts/p-body/default.nix index 3ee026f..4e3d7b7 100644 --- a/hosts/p-body/default.nix +++ b/hosts/p-body/default.nix @@ -10,11 +10,15 @@ ]; base = { + enable = true; documentation.enable = false; defaultPackages.enable = false; }; - nixos.networking.enable = false; + nixos = { + enable = true; + networking.enable = false; + }; networking = { hostName = "p-body"; |
