reconfiguring a lot of the pieces in configuration.nix to modules

This commit is contained in:
Chris Cochrun 2023-01-06 12:42:18 -06:00
parent 1a3bf8d4a6
commit 6f0633de2c
4 changed files with 98 additions and 162 deletions

View file

@ -2,11 +2,15 @@
with lib;
{
nixpkgs.config.allowUnfree = true;
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "America/Chicago";
# Set default shell to be dash for speed
# Apparently this is bad because a lot of nix relies on bash
# environment.binsh = "${pkgs.dash}/bin/dash";
environment.homeBinInPath = true;
programs.fish.enable = true;
programs.zsh.enable = true;
}