mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-11 21:35:06 +02:00
19 lines
389 B
Nix
19 lines
389 B
Nix
{pkgs, ...}: {
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
programs.steam.enable = true;
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
|
|
|
security.wrappers = {
|
|
gamescope = {
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${pkgs.gamescope}/bin/gamescope";
|
|
capabilities = "cap_sys_nice+ep";
|
|
};
|
|
};
|
|
}
|