Create shim home-manager modules
1 file changed, 12 insertions(+), 0 deletions(-)
changed files
A 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; + }; +}