Config rearrange

This commit is contained in:
John Locke 2024-03-10 01:00:55 -08:00
parent b06850dfc0
commit 8f2cd4184a
9 changed files with 26 additions and 13 deletions

3
base/README.md Normal file
View file

@ -0,0 +1,3 @@
## Base packages
Packages to install on all systems, desktop and server.

View file

@ -24,4 +24,16 @@
];
programs.mtr.enable = true;
# Set your time zone.
time.timeZone = "America/Los_Angeles";
# Shells
programs.zsh.enable = true;
programs.fish.enable = true;
programs.ssh.startAgent = true;
programs.ssh.askPassword = pkgs.lib.mkForce "${pkgs.ksshaskpass.out}/bin/ksshaskpass";
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
}