summaryrefslogtreecommitdiffstats
path: root/modules/hm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm')
-rw-r--r--modules/hm/sils/default.nix1
-rw-r--r--modules/hm/sils/sway.nix16
2 files changed, 17 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix
index cef49ac..6a2b43c 100644
--- a/modules/hm/sils/default.nix
+++ b/modules/hm/sils/default.nix
@@ -10,6 +10,7 @@
./jameica.nix
./kdeconnect.nix
./mail.nix
+ ./sway.nix
./zathura.nix
];
}
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 = {
+ };
+ };
+ };
+}