nixos/user/modules/gui/dev/design/default.nix
2026-03-15 11:15:52 -04:00

14 lines
280 B
Nix

{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.user.gui.dev.design;
in
{ options.modules.user.gui.dev.design = { enable = mkEnableOption "Enable design tools"; };
config = mkIf cfg.enable {
home.packages = with pkgs; [
penpot-desktop
];
};
}