diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-06-17 21:57:53 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-06-17 21:57:53 -0400 |
| commit | e0f2eb724245e02cb247b644f0947261d8665318 (patch) | |
| tree | 13f929df40059d37165cbe46be95a6404a1bbecb /system | |
| parent | refactor styles to new color scheme basis (diff) | |
| download | dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.gz dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.bz2 dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.zip | |
remove nix dir and move out all sub modules
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 |