Trying recursive home.file

This commit is contained in:
Bryan Ramos 2023-06-04 09:04:50 -04:00
parent b2b7c6f2b7
commit 9ee7cc143c

View file

@ -117,36 +117,19 @@
# DOTFILE SYMLINKS # DOTFILE SYMLINKS
home.file = { home.file = {
".config/home-manager/home.nix".source = ./home.nix; # Do not remove or edit this symlink ".gitconfig".source = ./dotfiles/gitconfig;
".config/" = {
source = ./dotfiles;
recursive = true;
};
".bashrc".source = ./dotfiles/bash/bashrc; ".bashrc".source = ./dotfiles/bash/bashrc;
".bash_profile".source = ./dotfiles/bash/bash_profile; ".bash_profile".source = ./dotfiles/bash/bash_profile;
".config/sway/config".source = ./dotfiles/sway/config; ".local/share/themes" = {
".config/sway/wallpapers".source = ./dotfiles/sway/wallpapers; source = ./dotfiles/themes;
recursive = true;
".config/rofi/config.rasi".source = ./dotfiles/rofi/config.rasi;
".config/alacritty".source = ./dotfiles/alacritty;
".config/nvim/init.lua".source = ./dotfiles/nvim/init.lua;
".config/nvim/lua".source = ./dotfiles/nvim/lua;
".config/git/config".source = ./dotfiles/gitconfig;
".config/fontconfig/fonts.conf".source = ./dotfiles/fontconfig/fonts.conf;
".config/btop/btop.conf".source = ./dotfiles/btop/btop.conf;
}; };
# THEMES
home.file = {
".local/share/themes".source = ./dotfiles/themes;
".config/gtk-3.0/settings.ini".text = ''
[Settings]
gtk-theme-name = "Juno-ocean"
gtk-application-prefer-dark-theme = true
gtk-icon-theme-name = "Qogir"
'';
}; };
} }