From 1d7b04a71c7222153ffa9cd48f73b51ea72204d1 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 18 Feb 2023 05:13:27 -0500 Subject: major refactor - `mkHost` now accepts an optional `specialArgs` argument to be passed to `nixosSystem()` - the `modules` argument for `mkHMUser` is now optional --- hosts/common/security.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'hosts/common/security.nix') diff --git a/hosts/common/security.nix b/hosts/common/security.nix index 04ae595..ed9be36 100644 --- a/hosts/common/security.nix +++ b/hosts/common/security.nix @@ -1,10 +1,8 @@ -{config, ...}: let - value = config.sys.wsl.enable; -in { +{wsl, ...}: { security = { - apparmor.enable = value; - audit.enable = value; - auditd.enable = value; + apparmor.enable = !wsl; + audit.enable = !wsl; + auditd.enable = !wsl; rtkit.enable = true; sudo = { configFile = '' -- cgit v1.2.3