nix-da/modules/nix/default.nix
Nydragon 554e706717
All checks were successful
/ test (push) Successful in 31s
feat: add gaming role
2025-01-30 18:39:04 +01:00

36 lines
789 B
Nix

{ ... }:
{
imports = [ ./overlays.nix ];
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-31.7.7"
];
};
};
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 10d";
# Catch up on missed runs due to being powered off
persistent = true;
};
#Deduplicate identical files in the store regularly
optimise = {
automatic = true;
};
settings = {
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
trusted-users = [ "ny" ];
experimental-features = [
"nix-command"
"flakes"
];
};
};
}