diff options
Diffstat (limited to 'home/profiles/gui/default.nix')
-rw-r--r-- | home/profiles/gui/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index 65d2c4a..edc1646 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -13,6 +13,9 @@ in enable = lib.mkEnableOption "The gui profile, sets up sway and related applications."; + laptop.enable = lib.mkEnableOption + "Enable laptop-specific tweaks"; + font = { name = lib.mkOption { type = lib.types.str; @@ -131,7 +134,7 @@ in waybar = { enable = config.wayland.windowManager.sway.enable; - settings = [ (import ./config/waybar/settings.nix { inherit neotheme; }) ]; + settings = [ (import ./config/waybar/settings.nix { inherit config lib neotheme; }) ]; style = import ./config/waybar/style.nix { inherit config neotheme; }; }; |