diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-21 17:10:18 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-21 17:10:18 -0500 |
| commit | 1575fc5d45c270d32f7ada235c5fe156e6e2492d (patch) | |
| tree | ed39cebf6a374e09ce9813f8db52f4afb42045d0 /options.nix | |
| parent | update commits (diff) | |
| download | dotfiles-nix-1575fc5d45c270d32f7ada235c5fe156e6e2492d.tar.gz dotfiles-nix-1575fc5d45c270d32f7ada235c5fe156e6e2492d.tar.bz2 dotfiles-nix-1575fc5d45c270d32f7ada235c5fe156e6e2492d.zip | |
add kanshi user service
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/options.nix b/options.nix index c80cdfd..241f726 100644 --- a/options.nix +++ b/options.nix @@ -19,6 +19,11 @@ with lib; let default = ""; }; + laptop = mkEnableOption { + description = "Flags this monitor to be part of a laptop and not docked."; + default = false; + }; + position = { enabled = mkEnableOption { description = "Enables hardcoded position of the monitor."; @@ -473,6 +478,7 @@ in { apps = { alacritty.enable = mkEnableOption "Enable the alacritty terminal."; astal.enable = mkEnableOption "Enable the astal gtk shell."; + kanshi.enable = mkEnableOption "Enable the kanshi service."; kitty.enable = mkEnableOption "Enable the kitty terminal."; mako.enable = mkEnableOption "Enable the mako notification daemon."; hyprlock.enable = mkEnableOption "Enable the hyprlock lockscreen."; |