From 14aaff96c1443633f26aaef6599c7805cc2806ac Mon Sep 17 00:00:00 2001 From: jay Date: Wed, 2 Jul 2025 07:14:56 -0400 Subject: [PATCH] Separate stylix config from home configuration. --- nodes/hosts/common/home/jay/home.nix | 18 +----------------- .../hosts/common/home/jay/programs/stylix.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 nodes/hosts/common/home/jay/programs/stylix.nix diff --git a/nodes/hosts/common/home/jay/home.nix b/nodes/hosts/common/home/jay/home.nix index 3b4b536..cfbd470 100644 --- a/nodes/hosts/common/home/jay/home.nix +++ b/nodes/hosts/common/home/jay/home.nix @@ -16,6 +16,7 @@ ./programs/oh-my-posh.nix ./programs/rbw.nix ./programs/rofi.nix + ./programs/stylix.nix ./programs/yazi.nix ./services/arrpc.nix ./services/fluidsynth.nix @@ -204,23 +205,6 @@ }; }; - stylix = { - enable = true; - base16Scheme = "${pkgs.base16-schemes}/share/themes/nord.yaml"; - image = ../../wallpapers/nixos-wallpaper.png; - #image = ./qat02.png; - # Wipeout HD Theme - #image = ./wipeout.png; - # Wipeout HD Reverse Theme - #image = ./wipeoutreverse.png; - targets = { - # hyprpaper.enable = lib.mkForce false; - mako.enable = false; - qt.enable = false; - }; - - }; - wayland.windowManager.hyprland = { # Allow home-manager to configure hyprland enable = true; diff --git a/nodes/hosts/common/home/jay/programs/stylix.nix b/nodes/hosts/common/home/jay/programs/stylix.nix new file mode 100644 index 0000000..befa1c2 --- /dev/null +++ b/nodes/hosts/common/home/jay/programs/stylix.nix @@ -0,0 +1,16 @@ +{ pkgs, inputs, ...}: { + stylix = { + enable = true; + base16Scheme = "${pkgs.base16-schemes}/share/themes/nord.yaml"; + image = ./nixos-wallpaper.png; + # Wipeout HD Theme + #image = ./wipeout.png; + # Wipeout HD Reverse Theme + #image = ./wipeoutreverse.png; + targets = { + # hyprpaper.enable = lib.mkForce false; + mako.enable = false; + qt.enable = false; + }; + }; +}