nix-conf/home-manager/nixstation.nix

26 lines
350 B
Nix

{ 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
];
}