diff options
Diffstat (limited to 'configuration/core/settings.nix')
-rw-r--r-- | configuration/core/settings.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configuration/core/settings.nix b/configuration/core/settings.nix new file mode 100644 index 0000000..e7a7b2e --- /dev/null +++ b/configuration/core/settings.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + nixpkgs.config.allowUnfree = true; + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + trusted-users = [ "root" "jras" ]; + }; +} |