diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 16:21:55 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 16:21:55 +0200 |
commit | 044d92adaea4dbc14156a2ce79f78df0bac0b1c2 (patch) | |
tree | bb914c8c66d8d326daa7e132906a3acab5988f06 /hosts/home.nix | |
parent | Changed vscodium to vscode (diff) | |
download | nixos-config-044d92adaea4dbc14156a2ce79f78df0bac0b1c2.tar.gz nixos-config-044d92adaea4dbc14156a2ce79f78df0bac0b1c2.tar.bz2 nixos-config-044d92adaea4dbc14156a2ce79f78df0bac0b1c2.zip |
Moved .config files to xdg.configFile
Diffstat (limited to 'hosts/home.nix')
-rw-r--r-- | hosts/home.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 87e7ceb..c01815c 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -142,15 +142,16 @@ in }; }; + xdg.configFile."zathura/zathurarc".source = dotfiles + "/zathurarc"; + xdg.configFile."sxhkd/".source = dotfiles + "/sxhkd/"; + xdg.configFile."dunst/dunstrc".source = dotfiles + "/dunstrc"; + xdg.configFile."dwmbar".source = dotfiles + "/dwmbar/"; + home.file = { ".bash_profile".source = dotfiles + "/.bash_profile"; ".xinitrc".source = dotfiles + "/.xinitrc"; ".Xresources".source = dotfiles + "//.Xresources/"; ".bashrc".source = dotfiles + "/.bashrc"; - ".config/zathura/zathurarc".source = dotfiles + "/zathurarc"; - ".config/sxhkd/".source = dotfiles + "/sxhkd"; - ".config/dunst/dunstrc".source = dotfiles + "/dunstrc"; - ".config/dwmbar".source = dotfiles + "/dwmbar/"; ".scripts/".source = dotfiles + "/scripts/"; }; |