ZeNixComputa: Add vintage story

This commit is contained in:
traxys 2025-08-25 21:57:59 +02:00
parent 9b814fb82d
commit d6d7262572
3 changed files with 14 additions and 1 deletions

View file

@ -34,6 +34,11 @@
"spotify"
"wowup-cf"
"libXNVCtrl" # mangohud through bottles & heroic
"vintagestory"
];
permittedInsecurePackages = [
# vintagestory
"dotnet-runtime-7.0.20"
];
};
}

View file

@ -8,6 +8,10 @@
userEmail = config.extraInfo.email;
};
home.packages = with pkgs; [
vintagestory
];
services.mako.output = "DP-2";
xdg.desktopEntries.teams = {

View file

@ -22,6 +22,7 @@
nixosModules,
hmModules,
unfreePackages ? [ ],
permittedInsecurePackages ? [ ],
}:
inputs.nixpkgs.lib.nixosSystem {
inherit system;
@ -33,7 +34,10 @@
{
nixpkgs = {
overlays = flakeOverlays system;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) unfreePackages;
config = {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) unfreePackages;
inherit permittedInsecurePackages;
};
};
home-manager = {