adding base module

This commit is contained in:
Chris Cochrun 2023-01-06 12:11:48 -06:00
parent 2b64043f77
commit 3dd5be038f

12
modules/base.nix Normal file
View file

@ -0,0 +1,12 @@
{ 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;
}