Allow creation of system-specific config files

This commit is contained in:
Manuel Thalmann 2023-12-01 12:51:55 +01:00
parent 1154275b70
commit 3d3da6a405
2 changed files with 21 additions and 13 deletions

View file

@ -7,7 +7,9 @@
outputs = { self, nixpkgs }:
let
system = import ./system.nix;
system = import ./lib/system.nix {
inherit nixpkgs;
};
in {
nixosConfigurations.manu-surface = system "manu-surface" {};
};

View file

@ -1,12 +1,18 @@
name :
{ nixpkgs }:
name :
{ dualBoot ? false } :
nixpkgs.lib.nixosSystem {
let
lib = nixpkgs.lib;
in
lib.nixosSystem {
system = "x86_64-linux";
modules = [
(lib.optional (builtins.pathExists ../machines/${name}.nix) ../machines/${name}.nix)
(
{ config, pkgs, ... }: {
imports = [
../hardware-configuration.nix
];
}
})
];
}