diff options
Diffstat (limited to 'nix/systems/spontaneity')
-rw-r--r-- | nix/systems/spontaneity/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nix/systems/spontaneity/default.nix b/nix/systems/spontaneity/default.nix index ae79429..df3dc6b 100644 --- a/nix/systems/spontaneity/default.nix +++ b/nix/systems/spontaneity/default.nix @@ -1,8 +1,12 @@ { config, lib, ... }: { imports = [ + # nixos-anywhere generates this file + ./hardware-configuration.nix + + ../../disko/vda-simple.nix + ../../modules/default.nix - ../../modules/vda-simple.nix ../home.nix ]; @@ -12,6 +16,5 @@ ttyonly.enable = true; grub.enable = true; }; - vars.hostName = "spontaneity"; }; } |