mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
more
This commit is contained in:
parent
e3d2329dc6
commit
2bafa6153f
2 changed files with 14 additions and 1 deletions
|
|
@ -42,7 +42,6 @@
|
|||
# Add stuff for your user as you see fit:
|
||||
programs.neovim.enable = true;
|
||||
home.packages = with pkgs; [
|
||||
steam
|
||||
discord
|
||||
spotify
|
||||
];
|
||||
|
|
|
|||
|
|
@ -154,6 +154,13 @@
|
|||
os-prober
|
||||
git
|
||||
fish
|
||||
(steam.override {
|
||||
withPrimus = true;
|
||||
withJava = true;
|
||||
extraPkgs = pkgs: [ bumblebee glxinfo ];
|
||||
}).run
|
||||
# Wine for 32 and 64 bit applications
|
||||
wineWowPackages.stable
|
||||
];
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
|
|
@ -164,6 +171,13 @@
|
|||
# enableSSHSupport = true;
|
||||
# };
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
};
|
||||
|
||||
programs.java.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue