13 lines
296 B
Nix
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;
|
|
}
|