diff --git a/flake.nix b/flake.nix index 1fe854a..2ef4b79 100644 --- a/flake.nix +++ b/flake.nix @@ -195,6 +195,15 @@ ] ++ commonModules; }; + + alphaOS = nixpkgs.lib.nixosSystem { + specialArgs = { + inherit inputs; + }; + modules = [ + ./hosts/min/configuration.nix + ]; + }; }; nixosModules = { automapaper = ./modules/automapaper; diff --git a/hosts/min/configuration.nix b/hosts/min/configuration.nix index 0464483..4a2dfcb 100644 --- a/hosts/min/configuration.nix +++ b/hosts/min/configuration.nix @@ -9,6 +9,10 @@ ]; networking.useDHCP = lib.mkDefault true; + networking = { + hostName = "nuOS"; # Define your hostname. + networkmanager.enable = true; # Easiest to use and most distros use this by default. + }; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";