steam + discord
This commit is contained in:
parent
9cd0ac9586
commit
c217f1169a
@ -12,11 +12,15 @@
|
||||
./torbrowser.nix
|
||||
./pithos.nix
|
||||
./vscodium.nix
|
||||
./discord.nix
|
||||
./steam.nix
|
||||
];
|
||||
|
||||
# allow specific unfree packages
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
"tigervnc" "font-bh-lucidatypewriter" # tigervnc
|
||||
"steam" "steam-original" "steam-runtime" # TODO move to steam.nix
|
||||
"discord" # TODO move to discord.nix
|
||||
];
|
||||
|
||||
# vulkan
|
||||
|
7
common/pc/discord.nix
Normal file
7
common/pc/discord.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.googlebot.packages = [
|
||||
pkgs.discord
|
||||
];
|
||||
}
|
10
common/pc/steam.nix
Normal file
10
common/pc/steam.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.steam.enable = true;
|
||||
hardware.steam-hardware.enable = true; # steam controller
|
||||
|
||||
users.users.googlebot.packages = [
|
||||
pkgs.steam
|
||||
];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user