gaming: fix repeating code
This commit is contained in:
parent
80452cb292
commit
7c4198a58a
1 changed files with 13 additions and 15 deletions
|
@ -3,11 +3,9 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
}: let
|
||||
cfg = config.modules.gaming;
|
||||
in
|
||||
{
|
||||
in {
|
||||
options = {
|
||||
modules.gaming = {
|
||||
enable = lib.mkEnableOption "Enable the gaming module";
|
||||
|
@ -15,23 +13,23 @@ in
|
|||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.steam = {
|
||||
programs = {
|
||||
steam = {
|
||||
enable = true;
|
||||
package = with pkgs; steam.override { extraPkgs = pkgs: [ attr ]; };
|
||||
gamescopeSession.enable = true;
|
||||
};
|
||||
|
||||
programs.gamemode.enable = true;
|
||||
|
||||
programs.coolercontrol = {
|
||||
gamemode.enable = true;
|
||||
coolercontrol = {
|
||||
enable = true;
|
||||
nvidiaSupport = true;
|
||||
};
|
||||
};
|
||||
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
via
|
||||
];
|
||||
services.udev.packages = [ pkgs.via ];
|
||||
services.udev.packages = [pkgs.via];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue