Start working on universal.nix for all hosts

This commit is contained in:
BuyMyMojo 2025-04-01 08:11:24 +11:00
parent 891eb95dbd
commit f0ba2200e8
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
3 changed files with 79 additions and 49 deletions

View file

@ -46,11 +46,33 @@
inherit nix-your-shell;
};
modules = [
./universal.nix
./configuration.nix
./services.nix
];
};
nixosConfigurations.low-power-laptop = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
unstable = import unstable {
inherit system;
config.allowUnfree = true;
};
inherit nix-your-shell;
};
modules = [
./universal.nix
./services.nix
];
};
};
}