diff options
| author | Baitinq <[email protected]> | 2022-06-18 16:21:55 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-18 16:21:55 +0200 |
| commit | 1550902c6c189c4f3f125070f15919774fa3b77b (patch) | |
| tree | 8d27b2caaf5af6aee9736d08d78c3ef036194055 /hosts/home.nix | |
| parent | Changed vscodium to vscode (diff) | |
| download | nixos-config-1550902c6c189c4f3f125070f15919774fa3b77b.tar.gz nixos-config-1550902c6c189c4f3f125070f15919774fa3b77b.tar.bz2 nixos-config-1550902c6c189c4f3f125070f15919774fa3b77b.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/"; }; |