mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
14 lines
280 B
Nix
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
|
|
];
|
|
};
|
|
}
|