Removes nix settings in favor of determinate

This commit is contained in:
Dennis 2025-05-09 08:31:40 +02:00
parent 8d404c9e06
commit d6cf972210

View file

@ -20,8 +20,6 @@
description = "Dennis Schoepf"; description = "Dennis Schoepf";
}; };
nix.settings.trusted-users = [ "dennis" ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# System Packages # System Packages
@ -174,11 +172,5 @@
# Nix settings # Nix settings
# Enable new Nix CLI and flakes # Enable new Nix CLI and flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.enable = false;
nix.package = pkgs.nix;
nix.gc = {
automatic = true;
options = "--delete-older-than 1w";
};
} }