diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-08-12 10:12:39 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-08-12 10:12:39 -0700 |
| commit | 6adb943f580162ea6348e3910926fc2fcefcfa79 (patch) | |
| tree | d802fd738ffed6eaa508acfd5d0c98b38331fab5 /profiles/core | |
| parent | add a profile for boot (diff) | |
| download | infra-6adb943f580162ea6348e3910926fc2fcefcfa79.tar.gz | |
add profiles for security, firewalls, and users
Diffstat (limited to 'profiles/core')
| -rw-r--r-- | profiles/core/security.nix | 4 | ||||
| -rw-r--r-- | profiles/core/users.nix | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/profiles/core/security.nix b/profiles/core/security.nix new file mode 100644 index 0000000..146012f --- /dev/null +++ b/profiles/core/security.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + security.sudo.wheelNeedsPassword = false; +} diff --git a/profiles/core/users.nix b/profiles/core/users.nix new file mode 100644 index 0000000..e0d8662 --- /dev/null +++ b/profiles/core/users.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + users.mutableUsers = false; +} |
