Download gaming platforms
This commit is contained in:
parent
854cb6891c
commit
db6da5a60b
@ -8,17 +8,25 @@
|
|||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
# NVIDIA setup
|
# NVIDIA setup
|
||||||
../../modules/nixos/nvidia.nix
|
../../modules/nixos/nvidia.nix
|
||||||
|
|
||||||
# Gnome customization
|
# Gnome customization
|
||||||
../../modules/nixos/gnome.nix
|
../../modules/nixos/gnome.nix
|
||||||
|
|
||||||
# Nh helper
|
# Nh helper
|
||||||
../../modules/nixos/nh.nix
|
../../modules/nixos/nh.nix
|
||||||
|
|
||||||
# Home-manager
|
# Home-manager
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
|
|
||||||
# Stylix colors
|
# Stylix colors
|
||||||
../../modules/nixos/stylix/ghibli.nix
|
../../modules/nixos/stylix/ghibli.nix
|
||||||
#../../modules/nixos/stylix/kuromi.nix
|
#../../modules/nixos/stylix/kuromi.nix
|
||||||
|
|
||||||
|
# Gaming
|
||||||
|
../../modules/nixos/gaming.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|||||||
19
modules/nixos/gaming.nix
Normal file
19
modules/nixos/gaming.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Enable Steam
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
remotePlay.openFirewall = true;
|
||||||
|
dedicatedServer.openFirewall = true;
|
||||||
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable wine
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
wineWowPackages.stable
|
||||||
|
wineWowPackages.staging
|
||||||
|
winetricks
|
||||||
|
lutris
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
stylix.image = ./wallpapers/ghibli-7.png;
|
stylix.image = ./wallpapers/ghibli-3.png;
|
||||||
|
|
||||||
stylix.cursor.package = pkgs.bibata-cursors;
|
stylix.cursor.package = pkgs.bibata-cursors;
|
||||||
stylix.cursor.name = "Bibata-Modern-Ice";
|
stylix.cursor.name = "Bibata-Modern-Ice";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user