blob: 8a74ba9ec40b21273569ac06260687e43e3b061c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{pkgs, ...}: {
# allow unfree
nixpkgs.config = {
allowUnfree = true;
chromium.enableWideVine = true;
};
environment.systemPackages = with pkgs; [
# opera
spotify
microsoft-edge
vscode
# fonts
corefonts
symbola
];
# fucking vscode requires this for github copilot
services.gnome.gnome-keyring.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
}
|