dotfiles/modules/base.nix
2023-01-06 12:11:48 -06:00

13 lines
296 B
Nix

{ pkgs, lib, config, ... }:
with lib;
{
# 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;
}