18 lines
350 B
Nix
18 lines
350 B
Nix
{ ... }: {
|
|
den.aspects.game-tools = {
|
|
nixos = { pkgs, ... }: {
|
|
users.users.bug.packages = with pkgs; [
|
|
steamtinkerlaunch
|
|
scanmem
|
|
samrewritten
|
|
lug-helper
|
|
gamemode
|
|
steam-run
|
|
];
|
|
|
|
services.flatpak.packages = [
|
|
"community.pathofbuilding.PathOfBuilding"
|
|
];
|
|
};
|
|
};
|
|
} |