9 lines
163 B
Nix
9 lines
163 B
Nix
{ pkgs-fixed, lib, host, ... }:
|
|
|
|
lib.mkIf (!host.laptop) {
|
|
home.packages = with pkgs-fixed; [
|
|
(blender.override { cudaSupport = true; })
|
|
aseprite
|
|
];
|
|
}
|