1
Files
flake-nixinator/home/modules/hyprland/options.nix
2023-04-26 12:56:31 +02:00

14 lines
221 B
Nix

{
lib,
mylib,
}:
with lib;
with mylib.modules; {
enable = mkEnableOpt "Hyprland Window Manager + Compositor";
theme = mkOption {
type = types.str;
description = "Wallpaper and colorscheme to use";
};
}