This commit is contained in:
cnst
2024-06-29 20:07:07 +02:00
parent 2f02cf259f
commit 3da5284209
6 changed files with 13 additions and 16 deletions

View File

@@ -11,12 +11,6 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# Solaar
#solaar = {
# url = "https://flakehub.com/f/Svenum/Solaar-Flake/*.tar.gz";
# inputs.nixpkgs.follows = "nixpkgs";
#};
# Neovim Nightly
neovim-nightly-overlay = { neovim-nightly-overlay = {
url = "github:nix-community/neovim-nightly-overlay"; url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -54,7 +48,6 @@
cnix = lib.nixosSystem { cnix = lib.nixosSystem {
modules = [ modules = [
./hosts/cnix ./hosts/cnix
# solaar.nixosModules.default
]; ];
specialArgs = { specialArgs = {
inherit inputs outputs; inherit inputs outputs;

View File

@@ -3,6 +3,7 @@
./zellij ./zellij
./firefox ./firefox
./neovim ./neovim
./lutris
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
# APPLICATIONS # APPLICATIONS

View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
home.packages = [
(pkgs.lutris.override {
extraPkgs = p: [
p.wineWowPackages.staging
p.pixman
p.libjpeg
p.gnome.zenity
];
})
];
}

View File

@@ -1 +0,0 @@
{ programs.solaar.enable = true; }

View File

@@ -4,9 +4,7 @@
enable = true; enable = true;
extraCompatPackages = [ extraCompatPackages = [
pkgs.proton-ge-bin pkgs.proton-ge-bin
pkgs.vkd3d-proton
]; ];
gamescopeSession.enable = true;
package = pkgs.steam.override { package = pkgs.steam.override {
extraPkgs = pkgs: extraPkgs = pkgs:
with pkgs; [ with pkgs; [
@@ -26,10 +24,6 @@
]; ];
}; };
}; };
gamescope = {
enable = true;
capSysNice = true;
};
gamemode = { gamemode = {
enable = true; enable = true;
settings = { settings = {

View File

@@ -25,8 +25,6 @@
libva libva
vaapiVdpau vaapiVdpau
libvdpau-va-gl libvdpau-va-gl
vkd3d
vkd3d-proton
]; ];
}; };
}; };