Files
nix-config/modules/home/desktop/extra/nwg-panel/options.nix
2025-07-18 14:50:13 -05:00

12 lines
204 B
Nix

{ lib, ... }:
with lib;
{
options.mjallen.desktop.extra.nwg-panel = {
enable = mkEnableOption "enable nwg-panel";
defaultApps = mkOption {
type = attrs;
default = { };
};
};
}