add necessary flake output

This commit is contained in:
Noa Aarts 2025-11-12 09:24:32 +01:00
parent 5f406a6530
commit 7cf31cdd4b
Signed by: noa
GPG key ID: 1850932741EFF672
2 changed files with 13 additions and 0 deletions

View file

@ -195,6 +195,15 @@
]
++ commonModules;
};
alphaOS = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
};
modules = [
./hosts/min/configuration.nix
];
};
};
nixosModules = {
automapaper = ./modules/automapaper;

View file

@ -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";