Add bunch more programs / services modularly
This commit is contained in:
6
system/app/gaming/gamemode.nix
Normal file
6
system/app/gaming/gamemode.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.gamemode ];
|
||||
programs.gamemode.enable = true;
|
||||
}
|
10
system/app/gaming/steam.nix
Normal file
10
system/app/gaming/steam.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.steam ];
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
gamescopeSession.enable = true;
|
||||
};
|
||||
}
|
5
system/app/launcher/dmenu.nix
Normal file
5
system/app/launcher/dmenu.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.dmenu ];
|
||||
}
|
5
system/app/launcher/rofi.nix
Normal file
5
system/app/launcher/rofi.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.rofi ];
|
||||
}
|
5
system/app/terminal/kitty.nix
Normal file
5
system/app/terminal/kitty.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.kitty ];
|
||||
}
|
Reference in New Issue
Block a user