From 924116bb2e14ab3f334c0abc2078da7c5dc8c58a Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Sun, 14 Jul 2024 17:07:42 +0200 Subject: [PATCH] nix: switch implemenatation to lix for NixOS installations for home-manager/darwin profiles, stay at Nix for now because this is what is used on work machines anyways. --- common/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/default.nix b/common/default.nix index a39cd77..4753b1c 100644 --- a/common/default.nix +++ b/common/default.nix @@ -215,6 +215,8 @@ in # Enable all sysrq functions (useful to recover from some issues): boot.kernel.sysctl."kernel.sysrq" = 1; # NixOS default: 16 (only the sync command) + nix.package = pkgs.lix; + nix.settings.trusted-users = [ "spiollinux" ]; # override tmpdir for daemon #systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp";