ooknet/modules/home/workstation/creative/inkscape.nix

13 lines
229 B
Nix

{
lib,
osConfig,
pkgs,
...
}: let
inherit (lib) mkIf elem;
inherit (osConfig.ooknet.workstation) profiles;
in {
config = mkIf (elem "creative" profiles) {
home.packages = [pkgs.inkscape-with-extensions];
};
}