diff --git a/home/features/desktop/default.nix b/home/features/desktop/default.nix new file mode 100644 index 0000000..c244dd4 --- /dev/null +++ b/home/features/desktop/default.nix @@ -0,0 +1,3 @@ +{ + stylix.targets.gtk.enable = true; +} diff --git a/home/features/wayland/hyprland/default.nix b/home/features/wayland/hyprland/default.nix index b154015..e6264eb 100644 --- a/home/features/wayland/hyprland/default.nix +++ b/home/features/wayland/hyprland/default.nix @@ -8,7 +8,7 @@ let '')); in { - imports = [ ../default.nix ]; + imports = [ ../default.nix ../../desktop ]; home.packages = [ inputs.hyprland-contrib.packages.${pkgs.system}.grimblast pkgs.hyprpaper ]; diff --git a/home/features/xorg/xmonad.nix b/home/features/xorg/xmonad.nix index 84ca850..b023bd5 100644 --- a/home/features/xorg/xmonad.nix +++ b/home/features/xorg/xmonad.nix @@ -1,6 +1,7 @@ { pkgs, ... }: { imports = [ ./default.nix + ../desktop ../desktop/alacritty.nix # Default xmonad terminal ]; diff --git a/home/global/default.nix b/home/global/default.nix index 36a629b..fc257f8 100644 --- a/home/global/default.nix +++ b/home/global/default.nix @@ -70,7 +70,6 @@ in }; # }}} # {{{ Ad-hoc stylix targets - stylix.targets.gtk.enable = true; # TODO: is this useful outside xorg? stylix.targets.xresources.enable = true; # }}}