dotfiles/nix/system/nix.nix
Alyxia Sother 2daf5f1b05
[nix] Redo and restructure the entire config
Thanks @KaitlynEthylia :)
2024-07-11 19:07:47 +02:00

21 lines
341 B
Nix

{ ... }:
{
services.nix-daemon.enable = true;
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
gc = {
automatic = true;
options = "--delete-older-than 8d";
};
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ "python-2.7.18.8" ];
};
};
}