nix-conf/home-manager/nixstation.nix
Thiago Sposito 65627a3ab5 refactor: reorganize Nix configuration and reintroduce Waydroid service
- 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
2025-10-05 22:01:07 -03:00

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