Files
dotfiles/nix/modules/stylix/home.nix
2025-09-24 21:46:56 +01:00

24 lines
337 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.stylix;
in
{
imports = [
./shared.nix
inputs.stylix.homeModules.stylix
];
config = {
stylix.enable = true;
stylix.autoEnable = false; # honestly, fuck stylix;
stylix.targets.gtk.enable = true;
stylix.targets.qt.enable = true;
};
}