46 lines
876 B
Nix
46 lines
876 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"unrar"
|
|
|
|
"steam"
|
|
"steam-run"
|
|
"steam-original"
|
|
|
|
"hplip"
|
|
|
|
"google-chrome"
|
|
"spotify"
|
|
"spotify-unwrapped"
|
|
"skypeforlinux"
|
|
"slack"
|
|
"discord"
|
|
"teamviewer"
|
|
"unity-editor"
|
|
"todoist-electron"
|
|
"todoist-electron-8.10.1"
|
|
"davinci-resolve"
|
|
"davinci-resolve-18.6.3"
|
|
|
|
"corefonts"
|
|
"camingo-code"
|
|
"helvetica-neue-lt-std"
|
|
#"kochi-substitute-naga10"
|
|
"ttf-envy-code-r"
|
|
"vista-fonts"
|
|
"vista-fonts-chs"
|
|
"xkcd-font-unstable"
|
|
"xkcd-font"
|
|
"xkcd-font-unstable-2017-08-24"
|
|
"ricty"
|
|
|
|
"pycharm-professional"
|
|
"idea-ultimate"
|
|
"android-studio-stable"
|
|
"android-studio-beta"
|
|
|
|
"vmware-view"
|
|
];
|
|
}
|