gamescope try again???

This commit is contained in:
cnst
2024-06-30 10:15:08 +02:00
parent 0d0413c30a
commit 06c3442ea3
5 changed files with 16 additions and 15 deletions

6
flake.lock generated
View File

@@ -300,11 +300,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1719683797, "lastModified": 1719733038,
"narHash": "sha256-sfE3ACZSo7I2ahByRsU66X+xmzAz4qSxl4IipSD7ObM=", "narHash": "sha256-kUG94JixUcSgkkJ0I1xo2rtXfSOmUJNbq+PKs9kDWWI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "neovim-nightly-overlay", "repo": "neovim-nightly-overlay",
"rev": "48f92fd7f42dd4b01e55dbe0baaf21c4a270a076", "rev": "dace98a9b5ee51971cab74f7a00955b8b8089536",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -30,11 +30,13 @@ in {
imports = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
../core ../core
../extra/gnome
../extra/steam ../extra/steam
../extra/nix-ld ../extra/nix-ld
../extra/gamescope ../extra/gamescope
../extra/gamemode ../extra/gamemode
../services/cnix.nix ../services/cnix.nix
../services/pipewire.nix
../hardware/cnix.nix ../hardware/cnix.nix
../locale/cnix.nix ../locale/cnix.nix
./hardware-configuration.nix ./hardware-configuration.nix

View File

@@ -13,7 +13,6 @@
xorg.libXinerama xorg.libXinerama
xorg.libXScrnSaver xorg.libXScrnSaver
libpng libpng
libpulseaudio
libvorbis libvorbis
stdenv.cc.cc.lib stdenv.cc.cc.lib
libkrb5 libkrb5

View File

@@ -46,16 +46,5 @@
options = "lv3:rwin_switch"; options = "lv3:rwin_switch";
}; };
}; };
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
wireplumber.enable = true;
#jack.enable = true;
#media-session.enable = true;
};
}; };
} }

View File

@@ -0,0 +1,11 @@
{
security.rtkit.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
}