imperium: Get TF2 working
DRG also runs but at a prohibitive framerate whenever things are onscreen
This commit is contained in:
parent
05357d5423
commit
921c429f14
|
@ -61,6 +61,9 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
self.nixosModules.beatific
|
||||
({ ... }: {
|
||||
environment.systemPackages = [ nixpkgs-2311.legacyPackages."i686-linux".gperftools ];
|
||||
})
|
||||
./machine/imperium
|
||||
];
|
||||
};
|
||||
|
|
|
@ -41,6 +41,13 @@
|
|||
extraGroups = [ "networkmanager" ];
|
||||
};
|
||||
|
||||
# Configs needed to run TF2 on integrated graphics
|
||||
programs.steam.enable = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
services.xserver.videoDrivers = [ "i915" ];
|
||||
hardware.opengl.enable = true;
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
libreoffice
|
||||
|
|
Loading…
Reference in New Issue