diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-04 19:13:28 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-04 19:13:28 +0100 |
commit | 5a062ed4329468249ac3be240aeb65080816f764 (patch) | |
tree | cafdaffd9c6d310a1c1ff0401c4b58a6a818b90b /configuration/nix-settings.nix | |
parent | 98c8c5ded88e4836f590db298cf53a5ec30eb353 (diff) |
stuff
Diffstat (limited to 'configuration/nix-settings.nix')
-rw-r--r-- | configuration/nix-settings.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configuration/nix-settings.nix b/configuration/nix-settings.nix new file mode 100644 index 0000000..189422c --- /dev/null +++ b/configuration/nix-settings.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + }; + + nix.extraOptions = '' + trusted-users = root jras + ''; +} |