flocon/modules/core/default.nix
Anthony Rodriguez b944193615
treewide: pedantic inherits
This fixes inherits and library functions usage, to inherit them
explicitely at top level of the file.
2025-02-23 00:01:57 +01:00

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;
}