diff options
author | Alan Pearce | 2025-03-01 22:28:43 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-01 22:28:43 +0100 |
commit | f927eec185d78a1ed314e9ccad0fee491a81c2ee (patch) | |
tree | f4c6b6fcebd7e6223f8564777adf45b4bde3b71c | |
parent | ae7fb42d63ab0eef7a785d28105773152bcbd1b1 (diff) | |
download | nixfiles-f927eec185d78a1ed314e9ccad0fee491a81c2ee.tar.lz nixfiles-f927eec185d78a1ed314e9ccad0fee491a81c2ee.tar.zst nixfiles-f927eec185d78a1ed314e9ccad0fee491a81c2ee.zip |
try lix
-rw-r--r-- | system/settings/configuration/nix.nix | 3 | ||||
-rw-r--r-- | user/settings/nix.nix | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/system/settings/configuration/nix.nix b/system/settings/configuration/nix.nix index 481c3911..5a9b4996 100644 --- a/system/settings/configuration/nix.nix +++ b/system/settings/configuration/nix.nix @@ -4,6 +4,7 @@ , ... }: { nix = { + package = pkgs.lix; settings = { cores = lib.mkDefault 0; use-xdg-base-directories = true; @@ -14,12 +15,14 @@ "https://nix-community.cachix.org" "https://binarycache.alanpearce.eu" "https://deploy-rs.cachix.org" + "https://cache.lix.systems" ]; trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "deploy-rs.cachix.org-1:xfNobmiwF/vzvK1gpfediPwpdIP0rpDV2rYqx40zdSI=" "binarycache.alanpearce.eu:ZwqO3XMuajPictjwih8OY2+RXnOKpjZEZFHJjGSxAI4=" + "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" ]; }; diff --git a/user/settings/nix.nix b/user/settings/nix.nix index b20ae466..85f4c65d 100644 --- a/user/settings/nix.nix +++ b/user/settings/nix.nix @@ -11,7 +11,7 @@ in nix = { enable = true; # needed for "standalone" home-manager, conflicts with module - package = lib.mkDefault pkgs.nix; + package = lib.mkDefault pkgs.lix; }; home.packages = with pkgs; [ |