From e6ed60548397627bf10f561f9438201dbba0a36e Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 21 Apr 2024 02:15:42 +0300 Subject: 2024-04-21 --- modules/wayland.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/wayland.nix (limited to 'modules/wayland.nix') diff --git a/modules/wayland.nix b/modules/wayland.nix new file mode 100644 index 0000000..e3dba79 --- /dev/null +++ b/modules/wayland.nix @@ -0,0 +1,19 @@ +{ + config, + lib, + pkgs, + ... +}: +with lib; +let + cfg = config.nixfiles.modules.wayland; +in +{ + options.nixfiles.modules.wayland.enable = mkEnableOption "Wayland"; + + config = mkIf cfg.enable { + nixfiles.modules.foot.enable = true; + + hm.home.packages = with pkgs; [ wl-clipboard ]; + }; +} -- cgit v1.2.3