Files
cnix/modules/system/studio/inkscape/default.nix
2024-10-17 20:06:17 +02:00

19 lines
331 B
Nix

{
pkgs,
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.system.studio.inkscape;
in {
options = {
system.studio.inkscape.enable = mkEnableOption "Enables inkscape";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
inkscape-with-extensions
];
};
}