!qol(restructure): heavy restructure

This commit is contained in:
2025-12-10 21:37:23 +00:00
parent b5c2089694
commit f1337d3edd
114 changed files with 2 additions and 360 deletions

26
modules/stylix/home.nix Normal file
View File

@@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.stylix;
in
{
options.modules.stylix = {
enable = lib.mkEnableOption "stylix configuration module";
};
imports = [
./shared.nix
inputs.stylix.homeModules.stylix
];
config = lib.mkIf cfg.enable {
stylix.enable = true;
stylix.autoEnable = false; # honestly, fuck stylix;
stylix.targets.gtk.enable = true;
stylix.targets.qt.enable = true;
stylix.targets.tmux.enable = false;
};
}