all repos — nixfiles @ ec7f1357d16ff2f4aa7430a2940a0b9519018595

System and user configuration, managed by nix and home-manager

Add 'user/' from commit 'a261579a74bc3bf9ec673ef190f1ec4bb625b86b' git-subtree-dir: user git-subtree-mainline: 8a65ab00b625139984aeb6c3a1a93f8bc9d3fc85 git-subtree-split: a261579a74bc3bf9ec673ef190f1ec4bb625b86b

Alan Pearce
commit

ec7f1357d16ff2f4aa7430a2940a0b9519018595

parent

8a65ab00b625139984aeb6c3a1a93f8bc9d3fc85

1 file changed, 12 insertions(+), 0 deletions(-)

changed files
A user/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; + }; +}