diff options
Diffstat (limited to '')
-rw-r--r-- | system/default.nix (renamed from nix/system/default.nix) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nix/system/default.nix b/system/default.nix index 93e9396..2124703 100644 --- a/nix/system/default.nix +++ b/system/default.nix @@ -4,6 +4,9 @@ # allow flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # allow unfree packages + nixpkgs.config.allowUnfree = true; + # hostname networking.hostName = config.hostName; @@ -103,8 +106,8 @@ # certs security.pki.certificateFiles = [ - ../../files/certs/freyanet.crt - ../../files/certs/tinternet.crt + ../files/certs/freyanet.crt + ../files/certs/tinternet.crt ]; # mime |