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

13 lines
194 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.creative.inkscape;
in
{
config = mkIf cfg.enable {
home.packages = [ pkgs.inkscape-with-extensions ];
};
}