summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rwxr-xr-xhome.nix22
1 files changed, 13 insertions, 9 deletions
diff --git a/home.nix b/home.nix
index 52c3662..76e9404 100755
--- a/home.nix
+++ b/home.nix
@@ -101,15 +101,6 @@ in
imv
];
- home.activation.dotfiles = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
- ln -sf ${config.home.homeDirectory}/dots/shell/zshrc ${config.home.homeDirectory}/.zshrc
- ln -sf ${config.home.homeDirectory}/dots/shell/bashrc ${config.home.homeDirectory}/.bashrc
- ln -sf ${config.home.homeDirectory}/dots/shell/profile ${config.home.homeDirectory}/.profile
- ln -sf ${config.home.homeDirectory}/dots/shell/bash_profile ${config.home.homeDirectory}/.bash_profile
- ln -sf ${config.home.homeDirectory}/dots/shell/starship.toml ${config.home.homeDirectory}/.config/starship.toml
- ln -sf ${config.home.homeDirectory}/dots/shell/Xresources ${config.home.homeDirectory}/.Xresources
- '';
-
xdg.configFile = builtins.mapAttrs (name: subpath: {
source = create_symlink "${dotfiles}/${subpath}";
recursive = true;
@@ -118,4 +109,17 @@ in
home.sessionVariables = {
EDITOR = "nvim";
};
+
+ gtk = {
+ enable = true;
+ iconTheme = {
+ name = "Papirus-Dark";
+ package = pkgs.papirus-icon-theme;
+ };
+ theme = lib.mkForce {
+ name = "Nightfox-Dark";
+ package = pkgs.nightfox-gtk-theme;
+ };
+ };
+
}