> update flakes > add GNOME Adwaita-dark > extend unfree and home pkgs, > update keybinds, > clean steam/cursor-cli predicate :
26 lines
326 B
Nix
26 lines
326 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate =
|
|
pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"steam-original"
|
|
"steam-run"
|
|
"steam"
|
|
"steamtinkerlaunch"
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
heroic
|
|
steam
|
|
steam-run
|
|
mindustry
|
|
];
|
|
}
|