blob: f9d65060ddc0fcd2e2a3bb748bd72723db96c002 (
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
25
26
27
|
{pkgs, lib, ...}: with lib; {
hm.home.packages = with pkgs; [
discord
];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
# Add additional package names here
"teams"
"discord"
"discord-ptb"
"discord-canary"
"slack"
"citrix-workspace"
"steam"
"steam-original"
"steam-run"
];
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
};
# hardware.opengl.driSupport32Bit = true;
}
|