Files
cnix/system/modules/studio/inkscape/default.nix
2024-10-13 18:09:15 +02:00

19 lines
345 B
Nix

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