1
Files
flake-nixinator/home/modules/rofi/options.nix

16 lines
213 B
Nix

{
lib,
mylib,
...
}:
with lib;
with mylib.modules; {
enable = mkEnableOption "Rofi";
theme = mkOption {
type = types.str;
example = "Three-Bears";
description = "Color theme to use";
};
}