diff --git a/flake.nix b/flake.nix index a25bcd7..d8244d3 100644 --- a/flake.nix +++ b/flake.nix @@ -77,6 +77,21 @@ # Make the coleman configuration colmena = lib.foldr (el: acc: acc // mkColmenaHost el) { + + null = { ... }: { + networking.hostName = "null"; + + imports = [ + ./nixos/common + ./nixos/hosts/other/null/configuration.nix + ]; + + deployment = { + allowLocalDeployment = true; + targetHost = null; + }; + }; + meta = { nixpkgs = import nixpkgs { inherit system; diff --git a/nixos/hosts/other/null/configuration.nix b/nixos/hosts/other/null/configuration.nix index c7e8833..88bd8b7 100644 --- a/nixos/hosts/other/null/configuration.nix +++ b/nixos/hosts/other/null/configuration.nix @@ -15,13 +15,6 @@ boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.efiSysMountPoint = "/boot/efi"; - networking.hostName = "nixos"; # Define your hostname. - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - # Enable networking networking.networkmanager.enable = true; @@ -86,7 +79,6 @@ extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ firefox - # thunderbird ]; };