dotfiles/user-modules/winbox/default.nix

23 lines
291 B
Nix
Raw Normal View History

2024-07-19 12:00:55 +00:00
{
config,
lib,
pkgs,
...
}:
2024-07-18 11:48:49 +00:00
with lib;
let
cfg = config.modules.winbox;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 11:48:49 +00:00
options.modules.winbox = {
enable = mkEnableOption "winbox";
};
config = mkIf cfg.enable {
modules.unfree.allowedPackages = [ "winbox" ];
2024-07-19 12:00:55 +00:00
home.packages = with pkgs; [ winbox ];
2024-07-18 11:48:49 +00:00
};
2024-07-19 12:00:55 +00:00
}