11 lines
199 B
Nix
11 lines
199 B
Nix
{ lib, ... }:
|
|
{
|
|
options.module.sway = {
|
|
enable = lib.mkEnableOption "the Sway WM.";
|
|
extraConfig = lib.mkOption {
|
|
default = [ ];
|
|
type = with lib.types; listOf str;
|
|
};
|
|
};
|
|
}
|