diff options
| author | seth <[email protected]> | 2024-08-15 03:49:26 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-08-15 03:50:09 -0400 |
| commit | 483aecb7c27cac5b213647726b0aa2a7c378e968 (patch) | |
| tree | 29005e7738f83e2345b408631e0d1ba601a91b9c | |
| parent | afea969091272b9dc640e95f9bd199d49ce2f5fa (diff) | |
glados-wsl: keep `base.security` enabled
i want polkit for run0
| -rw-r--r-- | systems/glados-wsl/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/systems/glados-wsl/default.nix b/systems/glados-wsl/default.nix index ab4d23f..50da718 100644 --- a/systems/glados-wsl/default.nix +++ b/systems/glados-wsl/default.nix @@ -14,9 +14,13 @@ archetypes.personal.enable = true; base = { - # these don't work well on wsl + # this conflicts with nixos-wsl networking.enable = false; - security.enable = false; + security = { + # something, something `resolv.conf` error + # (nixos-wsl probably doesn't set it) + apparmor = false; + }; }; environment = { |
