Files
nix-config/home-manager/stylix.nix
2024-06-18 19:35:39 +02:00

14 lines
261 B
Nix

{ osConfig, pkgs, config, lib, ... }:
let cfg = osConfig.custom.graphical.stylix;
in {
config = lib.mkIf cfg.enable {
stylix = {
enable = true;
targets = {
hyprland.enable = false;
waybar.enable = false;
};
};
};
}