extract games
This commit is contained in:
parent
b869d08400
commit
929b704d7a
4 changed files with 24 additions and 3 deletions
|
@ -1,8 +1,21 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
networking.hostName = "skinnyv";
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
linux_latest_hardened = pkgs.linux_latest_hardened.override {
|
||||
extraConfig = ''
|
||||
IA32_EMULATION y
|
||||
KVM m
|
||||
KVM_INTEL m
|
||||
'';
|
||||
features.ia32Emulation = true;
|
||||
enableParallelBuilding = true;
|
||||
};
|
||||
};
|
||||
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest_hardened;
|
||||
kernelPackages = pkgs.linuxPackagesFor pkgs.linux_latest_hardened;
|
||||
kernelParams = [
|
||||
"i915.enable_rc6=7"
|
||||
];
|
||||
|
@ -26,5 +39,6 @@
|
|||
../boot.nix
|
||||
../common.nix
|
||||
../gfx-intel.nix
|
||||
../zerotier.nix
|
||||
];
|
||||
}
|
||||
|
|
8
nixos/games.nix
Normal file
8
nixos/games.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(wine.override { wineBuild = "wineWow"; }) winetricks
|
||||
steam
|
||||
];
|
||||
}
|
|
@ -12,8 +12,6 @@
|
|||
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
|
||||
slack discord obs-studio gnome3.nautilus gnome3.eog
|
||||
hopper
|
||||
(wine.override { wineBuild = "wineWow"; }) winetricks
|
||||
steam
|
||||
unstable.qemu unstable.aqemu
|
||||
];
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ in
|
|||
./user-xsession.nix
|
||||
./cli.nix
|
||||
./gui.nix
|
||||
./games.nix
|
||||
];
|
||||
|
||||
gtk = {
|
||||
|
|
Loading…
Reference in a new issue