s0mePC-nix -> ada: rename
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
parent
b877c80e25
commit
aae7900229
86 changed files with 696 additions and 262 deletions
8
ada/programs/gamemode.nix
Normal file
8
ada/programs/gamemode.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{...}: {
|
||||
programs = {
|
||||
gamemode = {
|
||||
enable = true;
|
||||
enableRenice = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
11
ada/programs/gamescope.nix
Normal file
11
ada/programs/gamescope.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
programs = {
|
||||
gamescope = {
|
||||
enable = true;
|
||||
package = pkgs.gamescope_git;
|
||||
args = [
|
||||
"-e"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
11
ada/programs/nekoray.nix
Normal file
11
ada/programs/nekoray.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{...}: {
|
||||
programs = {
|
||||
nekoray = {
|
||||
enable = true;
|
||||
tunMode = {
|
||||
enable = true;
|
||||
setuid = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
12
ada/programs/nh.nix
Normal file
12
ada/programs/nh.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{...}: {
|
||||
programs = {
|
||||
nh = {
|
||||
enable = true;
|
||||
clean = {
|
||||
enable = true;
|
||||
dates = "weekly";
|
||||
extraArgs = "--keep 2 --keep-since 2d";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
8
ada/programs/ssh.nix
Normal file
8
ada/programs/ssh.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{...}: {
|
||||
programs = {
|
||||
ssh = {
|
||||
startAgent = true;
|
||||
agentTimeout = "12h";
|
||||
};
|
||||
};
|
||||
}
|
||||
22
ada/programs/steam.nix
Normal file
22
ada/programs/steam.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{pkgs, ...}: {
|
||||
programs = {
|
||||
steam = {
|
||||
enable = true;
|
||||
extraCompatPackages = [
|
||||
pkgs.proton-ge-bin
|
||||
];
|
||||
|
||||
remotePlay = {
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
localNetworkGameTransfers = {
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
protontricks = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
9
ada/programs/yubikey-touch-detector.nix
Normal file
9
ada/programs/yubikey-touch-detector.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{...}: {
|
||||
programs = {
|
||||
yubikey-touch-detector = {
|
||||
enable = true;
|
||||
libnotify = true;
|
||||
unixSocket = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue