Inkscape: Difference between revisions

DHCP (talk | contribs)
m fix indentation
 
Line 6: Line 6:
{{file|/etc/nixos/configuration.nix|nix|
{{file|/etc/nixos/configuration.nix|nix|
<nowiki>
<nowiki>
  environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
    inkscape
  inkscape
  ];
];
</nowiki>
</nowiki>
}}
}}
Line 21: Line 21:
{{file|/etc/nixos/configuration.nix|nix|
{{file|/etc/nixos/configuration.nix|nix|
<nowiki>
<nowiki>
  environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
    (inkscape-with-extensions.override {
  (inkscape-with-extensions.override {
      inkscapeExtensions = with inkscape-extensions; [ inkstitch ];
    inkscapeExtensions = with inkscape-extensions; [ inkstitch ];
    })
  })
  ];
];
</nowiki>
</nowiki>
}}
}}