refactor
This commit is contained in:
parent
66c05f9093
commit
44067d35ff
205 changed files with 9037 additions and 338 deletions
15
modules/nixos/apps/inkscape/default.nix
Normal file
15
modules/nixos/apps/inkscape/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.apps.inkscape;
|
||||
in
|
||||
{
|
||||
options.plusultra.apps.inkscape = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable Inkscape.";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [ inkscape-with-extensions google-fonts ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue