- Update Nix configuration files to improve structure and readability - Reintroduce Waydroid service configuration in common/default.nix - Adjust formatting for consistency across home-manager and host configurations
27 lines
348 B
Nix
27 lines
348 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
|
|
];
|
|
}
|