all repos — archive/dotfiles @ b710b6058767cf1d7c780f7e93aea6f52ad021c5

Superseded by nixfiles

Create shim home-manager modules

Alan Pearce
commit

b710b6058767cf1d7c780f7e93aea6f52ad021c5

parent

d0200a6b07e497d07dff2cfe0857f4dceb724b58

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; + }; +}