17 lines
202 B
Nix
17 lines
202 B
Nix
{
|
|
lib,
|
|
systemConfig,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = with lib.custom; [
|
|
(relativeToBase "modules")
|
|
./boot.nix
|
|
./hardware.nix
|
|
./security
|
|
];
|
|
|
|
system.stateVersion = systemConfig.version;
|
|
}
|