diff options
author | Silas Schöffel <sils@sils.li> | 2024-06-02 14:38:57 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-06-02 14:38:57 +0200 |
commit | c04d34ab44a1bd2b0118736d4a9a796f1c700eb2 (patch) | |
tree | 53f7b0e4fce40d066a08dbae0f213f4f4ea50f09 /modules/hm | |
parent | hyprland: init module (diff) | |
download | nix-config-c04d34ab44a1bd2b0118736d4a9a796f1c700eb2.tar.gz nix-config-c04d34ab44a1bd2b0118736d4a9a796f1c700eb2.zip |
sway: init module
This inits both the nixos and the home-manager module
Diffstat (limited to 'modules/hm')
-rw-r--r-- | modules/hm/sils/default.nix | 1 | ||||
-rw-r--r-- | modules/hm/sils/sway.nix | 16 |
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 = { + }; + }; + }; +} |