gaming
This commit is contained in:
parent
8c5cc69618
commit
291e8022ba
|
|
@ -6,6 +6,7 @@
|
||||||
./development
|
./development
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./games
|
||||||
./git-ssh.nix
|
./git-ssh.nix
|
||||||
./hyprlock_idle.nix
|
./hyprlock_idle.nix
|
||||||
./libinput.nix
|
./libinput.nix
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,6 @@
|
||||||
bitwarden-desktop
|
bitwarden-desktop
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
|
|
||||||
# Minecraft Launcher
|
|
||||||
prismlauncher
|
|
||||||
virt-manager
|
virt-manager
|
||||||
foliate
|
foliate
|
||||||
|
|
||||||
|
|
|
||||||
6
home/games/default.nix
Normal file
6
home/games/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Minecraft Launcher
|
||||||
|
prismlauncher
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -6,6 +6,7 @@ in {
|
||||||
../options.nix
|
../options.nix
|
||||||
./common.nix
|
./common.nix
|
||||||
./greetd.nix
|
./greetd.nix
|
||||||
|
./steam.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
services.udisks2.enable = true;
|
services.udisks2.enable = true;
|
||||||
|
|
|
||||||
8
user/steam.nix
Normal file
8
user/steam.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{...}: {
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
remotePlay.openFirewall = true;
|
||||||
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
|
dedicatedServer.openFirewall = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue