nix/option/Sway.nix

11 lines
199 B
Nix
Raw Normal View History

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