ooknet/system/profiles/base/default.nix
2024-01-17 22:18:39 +13:00

17 lines
289 B
Nix

{ lib, config, ... }:
let
cfg = config.systemProfile.base;
in
{
config = lib.mkIf cfg.enable {
systemModules = {
security.enable = true;
nixOptions.enable = true;
pipewire.enable = true;
networking.enable = true;
locale.enable = true;
}
};
}