diff options
Diffstat (limited to 'modules/zsh.nix')
-rw-r--r-- | modules/zsh.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/zsh.nix b/modules/zsh.nix new file mode 100644 index 0000000..28e8229 --- /dev/null +++ b/modules/zsh.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ + home.file = { + ".rm_recycle_home".text = ""; # use trash automatically in home directory + ".zshenv".text = builtins.readFile ../zsh/.zshenv; + }; + xdg.configFile.zsh = { + recursive = true; + source = ../zsh/.config/zsh; + }; +} |