Start working on universal.nix for all hosts
This commit is contained in:
parent
891eb95dbd
commit
f0ba2200e8
3 changed files with 79 additions and 49 deletions
|
@ -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
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue