This commit is contained in:
sadan 2025-02-21 21:45:59 -05:00
parent de4282f257
commit 69777aa4dc
No known key found for this signature in database
14 changed files with 259 additions and 26 deletions

View file

@ -86,6 +86,30 @@
};
nixosConfigurations = {
nixd = nixpkgs.lib.nixosSystem { };
serverpc = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config = {
allowUnfree = true;
};
};
};
modules = [
(
{ pkgs, ... }:
{
_module.args = {
stable = pkgs;
};
}
)
./boxes/serverpc/configuration.nix
inputs.home-manager.nixosModules.default
];
};
desktopIso = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [