diff options
| author | Fuwn <[email protected]> | 2024-10-29 22:30:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-30 00:39:12 -0700 |
| commit | 18ffde84c04c4dd9e67455289708097726536ecf (patch) | |
| tree | 9cede8c2487f6c32c02994b9e5c879e06c36744a /modules/options/default.nix | |
| parent | disk: add default name to root filesystem (diff) | |
| download | nixos-config-18ffde84c04c4dd9e67455289708097726536ecf.tar.xz nixos-config-18ffde84c04c4dd9e67455289708097726536ecf.zip | |
core: put fail2ban and resolved behind options
Diffstat (limited to 'modules/options/default.nix')
| -rw-r--r-- | modules/options/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/options/default.nix b/modules/options/default.nix index 39276d1..7097b15 100644 --- a/modules/options/default.nix +++ b/modules/options/default.nix @@ -2,12 +2,14 @@ { imports = [ ./containers.nix + ./networking.nix ./nix.nix ]; options.modules = - with lib.options; - with lib.types; + let + inherit (lib) mkOption types; + in { primaryUser = mkOption { default = null; |