athens/nix/modules/base/common.nix

30 lines
614 B
Nix
Raw Normal View History

_:
2023-01-31 22:01:21 -05:00
{
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
gc = {
automatic = true;
};
settings = {
substituters = [
"https://walkah.cachix.org"
"https://nix-community.cachix.org"
2024-10-14 14:27:09 -04:00
"https://cache.garnix.io"
2023-01-31 22:01:21 -05:00
];
trusted-public-keys = [
"walkah.cachix.org-1:D8cO78JoJC6UPV1ZMgd1V5znpk3jNUERGIeAKN15hxo="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
2024-10-14 14:27:09 -04:00
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
2023-01-31 22:01:21 -05:00
];
};
};
2023-03-25 15:17:55 -04:00
programs.zsh.enable = true;
2023-01-31 22:01:21 -05:00
}