mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-10 12:55:05 +02:00
ZeNixComputa: Add vintage story
This commit is contained in:
parent
9b814fb82d
commit
d6d7262572
3 changed files with 14 additions and 1 deletions
|
|
@ -34,6 +34,11 @@
|
|||
"spotify"
|
||||
"wowup-cf"
|
||||
"libXNVCtrl" # mangohud through bottles & heroic
|
||||
"vintagestory"
|
||||
];
|
||||
permittedInsecurePackages = [
|
||||
# vintagestory
|
||||
"dotnet-runtime-7.0.20"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@
|
|||
userEmail = config.extraInfo.email;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
vintagestory
|
||||
];
|
||||
|
||||
services.mako.output = "DP-2";
|
||||
|
||||
xdg.desktopEntries.teams = {
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue