Files
nixos-config/modules/user/packages/art.nix
T
2025-07-18 16:40:42 +03:00

11 lines
182 B
Nix
Executable File

{ pkgs-fixed, lib, host, ... }:
lib.mkIf (!host.laptop) {
home.packages = with pkgs-fixed; [
(blender.override { cudaSupport = true; })
aseprite
krita
gimp
];
}