nix/option/Sway.nix

13 lines
190 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
{
lib,
...
}: {
options.module.sway = {
enable = lib.mkEnableOption "the Sway WM.";
extraConfig = lib.mkOption {
2024-11-18 02:24:48 +03:00
default = [ ];
type = with lib.types; listOf str;
2024-11-16 04:43:59 +03:00
};
};
}