add phone

This commit is contained in:
Kopatz
2024-06-18 19:35:39 +02:00
parent c6a9b5e87e
commit 0d79d559d5
6 changed files with 41 additions and 4 deletions

View File

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