28 lines
362 B
Nix
28 lines
362 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
|
|
mindustry
|
|
];
|
|
}
|