home: add aseprite package

This commit is contained in:
ooks-io 2024-12-07 22:51:34 +11:00
parent 664b22c2bb
commit 671da8f322
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{
lib,
osConfig,
pkgs,
...
}: let
inherit (lib) mkIf elem;
inherit (osConfig.ooknet.workstation) profiles;
in {
config = mkIf (elem "creative" profiles) {
home.packages = [pkgs.aseprite];
};
}