17 lines
409 B
Nix
17 lines
409 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
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;
|
|
|
|
}
|