diff --git a/flake.nix b/flake.nix index 8a48219..3020d85 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,6 @@ ./modules/applications.nix ./modules/firefox.nix ./modules/games.nix - ./modules/boot.nix ./modules/stow.nix ./hosts/pluto/conf.nix diff --git a/modules/boot.nix b/modules/boot.nix deleted file mode 100644 index 8f83123..0000000 --- a/modules/boot.nix +++ /dev/null @@ -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"; - }; - }; -} diff --git a/modules/games.nix b/modules/games.nix index 753066f..37dde10 100644 --- a/modules/games.nix +++ b/modules/games.nix @@ -4,4 +4,12 @@ environment.systemPackages = with pkgs; [ osu-lazer ]; + + programs.steam = { + enable = true; + extest.enable = true; + extraPackages = [ pkgs.gamescope ]; + + gamescopeSession.enable = true; + } }