add krita and remove resolve from sakotop
This commit is contained in:
parent
394d395e95
commit
b1975c2946
3 changed files with 17 additions and 2 deletions
|
@ -38,8 +38,6 @@
|
|||
};
|
||||
media = {
|
||||
gimp.enable = true;
|
||||
# fixed via local package
|
||||
resolve.enable = true;
|
||||
blender.enable = true;
|
||||
kdenlive.enable = true;
|
||||
lmms.enable = true;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./resolve
|
||||
./gimp
|
||||
./krita
|
||||
./blender
|
||||
./kdenlive
|
||||
./lmms
|
||||
|
|
16
modules/desktop/media/krita/default.nix
Normal file
16
modules/desktop/media/krita/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ outputs, options, config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.media.krita;
|
||||
in
|
||||
{
|
||||
options.modules.desktop.media.krita = {
|
||||
enable = mkEnableOption false;
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
users.users.sako.packages = with pkgs; [
|
||||
krita
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue