From 761a2f094eb9ba0a6672823dae9ea8882db1d48e Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 17 Dec 2023 11:57:44 +0800 Subject: [PATCH] hosts/ni: update Nix settings --- hosts/ni/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/ni/default.nix b/hosts/ni/default.nix index 9b64952a..773481c2 100644 --- a/hosts/ni/default.nix +++ b/hosts/ni/default.nix @@ -66,8 +66,14 @@ # Basically, the most basic nixpkgs configuration. environment.variables.NIXPKGS_CONFIG = lib.mkForce ./config/nixpkgs/config.nix; + # Make Nix experimental. + nix.package = pkgs.nixUnstable; + # Some more experimentals for Nix. nix.settings.experimental-features = [ "auto-allocate-uids" "configurable-impure-env" ]; + # My poor achy-breaky desktop can't take it. + nix.daemonCPUSchedPolicy = "idle"; + system.stateVersion = "24.05"; # Yes! I read the comment! }