mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 21:04:38 -05:00
feat: init
This commit is contained in:
commit
96c6f790fc
804 changed files with 33411 additions and 0 deletions
11
modules/home/gui/apps/gaming/default.nix
Executable file
11
modules/home/gui/apps/gaming/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
let
|
||||
importList =
|
||||
let
|
||||
content = builtins.readDir ./.;
|
||||
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
|
||||
in
|
||||
map (name: ./. + "/${name}") dirContent;
|
||||
in
|
||||
{
|
||||
imports = importList;
|
||||
}
|
12
modules/home/gui/apps/gaming/heroic/default.nix
Executable file
12
modules/home/gui/apps/gaming/heroic/default.nix
Executable file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
heroic
|
||||
gogdl
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/gaming/lutris/default.nix
Executable file
11
modules/home/gui/apps/gaming/lutris/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
lutris
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/gaming/prismLauncher/default.nix
Executable file
11
modules/home/gui/apps/gaming/prismLauncher/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
prismlauncher
|
||||
;
|
||||
};
|
||||
}
|
21
modules/home/gui/apps/gaming/steam/default.nix
Executable file
21
modules/home/gui/apps/gaming/steam/default.nix
Executable file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
steam
|
||||
;
|
||||
};
|
||||
|
||||
home = {
|
||||
file = {
|
||||
"./.steam/steam/steam_dev.cfg" = {
|
||||
source = ./steam_dev.cfg;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
# If you wanna install Sc2, it takes Proton v8
|
2
modules/home/gui/apps/gaming/steam/steam_dev.cfg
Executable file
2
modules/home/gui/apps/gaming/steam/steam_dev.cfg
Executable file
|
@ -0,0 +1,2 @@
|
|||
@nClientDownloadEnableHTTP2PlatformLinux 0
|
||||
@fDownloadRateImprovementToAddAnotherConnection 1.0
|
Loading…
Add table
Add a link
Reference in a new issue