dots/modules/home-manager/bundles/desktop.nix
2025-08-07 11:47:53 +10:00

14 lines
249 B
Nix

{ config, lib, ... }:
let
feature = "desktop";
in
{
config = lib.mkIf config.${feature}.enable {
kitty.enable = true;
zellij.enable = true;
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}