summaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/sway.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/sway.nix')
-rw-r--r--modules/hm/sils/sway.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/hm/sils/sway.nix b/modules/hm/sils/sway.nix
new file mode 100644
index 0000000..4298dd0
--- /dev/null
+++ b/modules/hm/sils/sway.nix
@@ -0,0 +1,16 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.sils.sway;
+in {
+ options.sils.sway.enable = lib.mkEnableOption "sway";
+ config = lib.mkIf cfg.enable {
+ wayland.windowManager.sway = {
+ enable = true;
+ config = {
+ };
+ };
+ };
+}