From 7cf31cdd4b6d99e58655d148efd416a9a35a2f39 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Wed, 12 Nov 2025 09:24:32 +0100 Subject: [PATCH] add necessary flake output --- flake.nix | 9 +++++++++ hosts/min/configuration.nix | 4 ++++ 2 files changed, 13 insertions(+) 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";