blob: 28e8229359221b5e06a78e4c34951ba1bc824f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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;
};
}
|