games: add steam

This commit is contained in:
Nico 2025-05-03 16:15:57 +10:00
parent 4e58df0ca1
commit 428888b702
3 changed files with 8 additions and 20 deletions

View file

@ -18,7 +18,6 @@
./modules/applications.nix ./modules/applications.nix
./modules/firefox.nix ./modules/firefox.nix
./modules/games.nix ./modules/games.nix
./modules/boot.nix
./modules/stow.nix ./modules/stow.nix
./hosts/pluto/conf.nix ./hosts/pluto/conf.nix

View file

@ -1,19 +0,0 @@
{ config, lib, pkgs, ... }:
# theming of grub
{
boot.loader.grub = {
theme = pkgs.stdenv.mkDerivation {
pname = "hyperfluent";
version = "v1.0.1";
src = pkgs.fetchFromGitHub {
owner = "Coopydood";
repo = "HyperFluent-GRUB-Theme";
rev = "62e525ea2aa250e3f37669d68eb355b6cc997d64";
hash = "sha256-Als4Tp6VwzwHjUyC62mYyiej1pZL9Tzj4uhTRoL+U9Q=";
};
installPhase = "cp -r nixos $out";
};
};
}

View file

@ -4,4 +4,12 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
osu-lazer osu-lazer
]; ];
programs.steam = {
enable = true;
extest.enable = true;
extraPackages = [ pkgs.gamescope ];
gamescopeSession.enable = true;
}
} }