8 lines
212 B
Nix
8 lines
212 B
Nix
{ nixosConfig, lib, pkgs, ... }:
|
|
|
|
lib.mkIf nixosConfig.jalr.gui.enable {
|
|
home.packages = with pkgs; [
|
|
inkscape
|
|
];
|
|
xdg.configFile."inkscape/extensions/tabbed-box-maker".source = pkgs.tabbed-box-maker;
|
|
}
|