Flake: remove nix-gaming

This commit is contained in:
Toast 2024-03-20 10:07:28 +01:00
parent 26f91e4e19
commit 5a1fd5175c
3 changed files with 1 additions and 80 deletions

View file

@ -1,16 +1,6 @@
{ config, flakeSelf, pkgs, ... }:
let
nix-gaming = flakeSelf.inputs.nix-gaming;
in
{ config, pkgs, ... }:
{
# Get the nix-gaming module
imports = [
# This module is basically built in to nixpkgs now, so it;s not useful
# nix-gaming.nixosModules.steamCompat
];
programs.steam = {
enable = true;
# Doubt that I'll use it, but I'll enable it anyways
@ -21,12 +11,6 @@ in
];
};
# Use nix-gaming's cachix
nix.settings = {
substituters = ["https://nix-gaming.cachix.org"];
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
# Some linux native games (rise of the tomb raider) use alsa for sound
services.pipewire.alsa.enable = if config.services.pipewire.pulse.enable == true then true else false;