feat: setup zsh as default shell

This commit is contained in:
Felix Schröter 2020-03-14 01:38:34 +01:00
parent b220300e0c
commit f488f772ee
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
5 changed files with 63 additions and 43 deletions

View file

@ -1,15 +0,0 @@
{ config, pkgs, ... }:
with pkgs;
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
stdlib = builtins.readFile ./.direnvrc;
};
home.file.".envrc".text = ''
dotenv
'';
}