diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-28 16:08:10 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-28 16:08:10 -0400 |
commit | 49aea0dbed7cc4a3f26c7beff624c35aaf48a470 (patch) | |
tree | 255ede903ce278dc56c480de4df66966cdc95dd9 /modules/desktops/default.nix | |
parent | make hyprlock input not change bg color (diff) | |
download | dotfiles-nix-49aea0dbed7cc4a3f26c7beff624c35aaf48a470.tar.gz dotfiles-nix-49aea0dbed7cc4a3f26c7beff624c35aaf48a470.tar.bz2 dotfiles-nix-49aea0dbed7cc4a3f26c7beff624c35aaf48a470.zip |
add swaywm
Diffstat (limited to 'modules/desktops/default.nix')
-rw-r--r-- | modules/desktops/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/desktops/default.nix b/modules/desktops/default.nix index 37197c2..974ec89 100644 --- a/modules/desktops/default.nix +++ b/modules/desktops/default.nix @@ -10,6 +10,7 @@ in { imports = [ ./hyprland + ./sway ./wayland.nix ]; @@ -17,6 +18,7 @@ in { enable = mkEnableOption "Enable baseline desktop utils and programs."; wayland = mkEnableOption "Enable wayland desktop components."; hyprland = mkEnableOption "Install the Hyprland desktop."; + sway = mkEnableOption "Install the sway desktop."; }; config = mkIf cfg.enable { |