diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-10 14:20:20 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-10 14:20:20 -0800 |
commit | 82f3b7b522edd220fc6819fb7c36496a7bfff407 (patch) | |
tree | 1c134562fc6443ff1c45dd0a093b4b54d7ba699a /desktop/configuration.nix | |
parent | 570901512da178449d7cef2755574e9e786457b3 (diff) |
alter config to work on first install
Diffstat (limited to 'desktop/configuration.nix')
-rw-r--r-- | desktop/configuration.nix | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/desktop/configuration.nix b/desktop/configuration.nix index 79bc5fa..aa5290e 100644 --- a/desktop/configuration.nix +++ b/desktop/configuration.nix @@ -5,9 +5,7 @@ in { imports = []; - hardware = { - enableRedistributableFirmware = true; - }; + hardware.enableAllFirmware = true; documentation = { enable = true; @@ -23,14 +21,6 @@ in ''; }; }; - # environment = { - # memoryAllocator.provider = "scudo"; - # variables.SCUDO_OPTIONS = "ZeroContents=1"; - # }; - - # environment = { - # memoryAllocator.provider = "graphene-hardened-light"; - # }; systemd = { coredump.enable = false; @@ -359,15 +349,7 @@ in auditd.enable = true; audit.enable = true; chromiumSuidSandbox.enable = true; - sudo.enable = false; - doas = { - enable = true; - extraRules = [{ - users = [ vars.userName ]; - keepEnv = true; - persist = true; - }]; - }; + sudo.enable = true; }; xdg.portal = { |