Merge branch 'main' of github.com:ooks-io/nix

remote micro-pc
This commit is contained in:
ooks-io 2024-02-19 22:03:21 +13:00
commit e985ff9850
2 changed files with 10 additions and 1 deletions

View file

@ -18,6 +18,6 @@
# useDHCP = true; # useDHCP = true;
}; };
boot = { boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen; kernelPackages = pkgs.linuxPackages_xanmod_latest;
}; };
} }

View file

@ -16,6 +16,7 @@ let
keyutils keyutils
mangohud mangohud
winetricks winetricks
inputs.nix-gaming.packages.${pkgs.system}.wine-ge
protontricks protontricks
]; ];
}; };
@ -52,5 +53,13 @@ in
}; };
}; };
services.pipewire.lowLatency.enable = true; services.pipewire.lowLatency.enable = true;
nixpkgs.overlays = [
(_: prev: {
steam = prev.steam.override {
extraProfile = "export STEAM_EXTRA_COMPAT_TOOLS_PATHS='${inputs.nix-gaming.packages.${pkgs.system}.proton-ge}'";
};
})
];
}; };
} }