This commit is contained in:
2026-04-08 00:40:00 +01:00
parent 6f4e3d6444
commit 5e21664124
2 changed files with 14 additions and 8 deletions
+8 -2
View File
@@ -161,8 +161,14 @@ in {
# Allow unfree
nixpkgs.config.allowUnfree = true;
# Enable flakes
nix.settings.experimental-features = ["nix-command" "flakes"];
# Use Lix as the system Nix implementation
nix.package = pkgs.lixPackageSets.stable.lix;
# Enable flakes + restrict who can submit builds to the daemon
nix.settings = {
experimental-features = ["nix-command" "flakes"];
allowed-users = ["root" flakeConfig.username];
};
# Auto-unlock gnome-keyring on login
security.pam.services.login.enableGnomeKeyring = true;