add nix config to base config

This commit is contained in:
2026-02-22 21:10:08 -05:00
parent 2a7521ee77
commit 06bf993fb8

View File

@@ -6,4 +6,19 @@
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
system.stateVersion = "25.11"; system.stateVersion = "25.11";
nix = {
settings = {
experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true;
trusted-users = ["@wheel"];
substituters = [
"https://nix-cache.dubyatp.xyz/duby"
];
trusted-public-keys = [
"duby:IUVsFbQu499JOaHmUpi/mwhZEVQK7soFn7H6lD2/2T4="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
};
};
} }