nix-conf/home-manager/nixstation.nix
2025-10-04 10:45:50 -03:00

26 lines
344 B
Nix

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