From f0b23422acd9775647423558194ffc1e4eb8f2f9 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Thu, 16 Oct 2025 15:07:41 +0000 Subject: [PATCH] fix(stylix): fixed stylix applying but not having config --- nix/hosts/doloro-wsl/home.nix | 1 + nix/hosts/doloro-wsl/nixos.nix | 1 + nix/modules/stylix/nixos.nix | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/hosts/doloro-wsl/home.nix b/nix/hosts/doloro-wsl/home.nix index 3e3602d..b216eb4 100644 --- a/nix/hosts/doloro-wsl/home.nix +++ b/nix/hosts/doloro-wsl/home.nix @@ -27,6 +27,7 @@ nixvim.enable = true; tmux.enable = true; fish.enable = true; + stylix.enable = true; }; # Home Manager needs a bit of information about you and the paths it should # manage. diff --git a/nix/hosts/doloro-wsl/nixos.nix b/nix/hosts/doloro-wsl/nixos.nix index d3eef7b..c8239cb 100644 --- a/nix/hosts/doloro-wsl/nixos.nix +++ b/nix/hosts/doloro-wsl/nixos.nix @@ -8,6 +8,7 @@ { modules = { fish.enable = true; + stylix.enable = true; }; imports = [ inputs.nixos-wsl.nixosModules.default diff --git a/nix/modules/stylix/nixos.nix b/nix/modules/stylix/nixos.nix index fb61f36..137fee1 100644 --- a/nix/modules/stylix/nixos.nix +++ b/nix/modules/stylix/nixos.nix @@ -19,7 +19,7 @@ in config = lib.mkIf cfg.enable { stylix.enable = true; stylix.autoEnable = false; # honestly, fuck stylix; - #stylix.targets.tmux.enable = false; + # stylix.targets.tmux.enable = false; }; }