athens/modules/base/common.nix

38 lines
541 B
Nix
Raw Normal View History

2023-12-12 18:59:06 -05:00
{ pkgs, ... }:
2023-01-31 22:01:21 -05:00
{
2023-12-12 18:59:06 -05:00
environment.systemPackages = with pkgs; [
dogdns
htop
inetutils
vim
];
2023-01-31 22:01:21 -05:00
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
gc = {
automatic = true;
};
settings = {
substituters = [
"https://walkah.cachix.org"
];
trusted-public-keys = [
"walkah.cachix.org-1:D8cO78JoJC6UPV1ZMgd1V5znpk3jNUERGIeAKN15hxo="
];
};
};
2023-03-25 15:17:55 -04:00
programs = {
zsh = {
enable = true;
promptInit = "";
};
};
2023-01-31 22:01:21 -05:00
}