diff options
author | Rory& <root@rory.gay> | 2024-08-08 03:50:02 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-08-08 03:51:45 +0200 |
commit | ff65c8e951092d4d7caed1c4d02c9e141df7799b (patch) | |
tree | f8bd40da8fd80021a7452723a32cddaec8d45de6 /modules/base.nix | |
parent | Server config cleanup (diff) | |
download | Rory-Open-Architecture-ff65c8e951092d4d7caed1c4d02c9e141df7799b.tar.xz |
Imports cleanup
Diffstat (limited to 'modules/base.nix')
-rwxr-xr-x | modules/base.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/modules/base.nix b/modules/base.nix index 6597a97..bb122a8 100755 --- a/modules/base.nix +++ b/modules/base.nix @@ -1,9 +1,4 @@ -{ - config, - pkgs, - lib, - ... -}: +{ pkgs, lib, ... }: { imports = [ @@ -148,7 +143,10 @@ "flakes" ]; auto-optimise-store = true; - trusted-users = [ "@wheel" ]; + trusted-users = [ + "@wheel" + "root" + ]; }; }; nixpkgs = { |