flake-parts: Almost done with yggdrasil
This commit is contained in:
parent
d579c8ad2c
commit
ebc8a545c8
43 changed files with 2650 additions and 135 deletions
18
modules/games/communication.nix
Normal file
18
modules/games/communication.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
flake.modules.nixos.games =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
discord
|
||||
teamspeak6-client
|
||||
];
|
||||
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
wlrobs
|
||||
obs-move-transition
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
16
modules/games/steam.nix
Normal file
16
modules/games/steam.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
flake.modules.nixos.games =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = true;
|
||||
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
protontricks
|
||||
];
|
||||
};
|
||||
}
|
||||
10
modules/games/various-games.nix
Normal file
10
modules/games/various-games.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
flake.modules.nixos.games =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
prismlauncher
|
||||
starsector
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue