This fixes inherits and library functions usage, to inherit them explicitely at top level of the file.
17 lines
281 B
Nix
17 lines
281 B
Nix
{lib, ...}: let
|
|
inherit (lib.modules) mkDefault;
|
|
in {
|
|
imports = [
|
|
./hardware
|
|
|
|
./boot.nix
|
|
./fonts.nix
|
|
./locales.nix
|
|
./networking.nix
|
|
./nix.nix
|
|
./users.nix
|
|
./security.nix
|
|
];
|
|
system.stateVersion = mkDefault "24.05";
|
|
zramSwap.enable = true;
|
|
}
|