Modularize teams sops yazi

This commit is contained in:
DashieTM 2024-08-24 13:25:08 +02:00
parent 7730cbef59
commit c73cb37278
75 changed files with 3023 additions and 3573 deletions

View file

@ -7,14 +7,7 @@
description = "Enabled gaming related features.";
};
tools = lib.mkOption {
default = with pkgs; [
gamemode
steam
lutris
wine
adwsteamgtk
heroic
];
default = with pkgs; [ gamemode steam lutris wine adwsteamgtk heroic ];
example = [ ];
type = with lib.types; listOf package;
description = "Install gaming related packages";
@ -41,7 +34,8 @@
default = true;
example = false;
type = lib.types.bool;
description = "Whether to use GPU performance setting. NOTE: this is at your own risk!";
description =
"Whether to use GPU performance setting. NOTE: this is at your own risk!";
};
gpu_device = lib.mkOption {
default = 0;
@ -51,7 +45,7 @@
};
};
config = lib.mkIf config.mods.gaming.enable
(lib.optionalAttrs (options?environment.systemPackages) {
(lib.optionalAttrs (options ? environment.systemPackages) {
environment.systemPackages = config.mods.gaming.tools;
programs.steam.enable = config.mods.gaming.steam;
@ -59,9 +53,7 @@
programs.gamemode = {
enableRenice = true;
settings = {
general = {
governor = "performance";
};
general = { governor = "performance"; };
gpu = lib.mkIf config.mods.gaming.gpu_optimization {
apply_gpu_optimisations = "accept-responsibility";
gpu_device = config.mods.gaming.gpu_device;