chore: optmize build on nixbook, removing ollama and steam

This commit is contained in:
Thiago Sposito 2025-09-20 23:27:51 -03:00
parent cab6411899
commit 2c0562ab30
5 changed files with 50 additions and 32 deletions

View file

@ -0,0 +1,26 @@
{ pkgs
, lib
, ...
}:
{
imports = [
./home.nix
];
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"code-cursor"
"ollama-cuda"
"steam-original"
"steam-run"
"steam"
"steamtinkerlaunch"
];
home.packages = with pkgs; [
heroic
ollama-cuda
steam
];
}