forked from yrashk/nix-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.nix
24 lines (23 loc) · 790 Bytes
/
config.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
allowUnfree = true;
chromium = {
enablePepperFlash = true;
};
packageOverrides = pkgs: with pkgs; rec {
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
config = {
allowUnfree = true;
};
};
# https://github.com/NixOS/nixpkgs/issues/18640
tla-plus = callPackage pkgs/tla-plus { inherit pkgs; };
dummy-wget = callPackage pkgs/dummy-wget { inherit pkgs; };
polyml-5-4 = callPackage pkgs/polyml-5-4 {};
isabelle2011-1 = callPackage pkgs/isabelle2011-1 {
inherit (pkgs) stdenv fetchurl nettools perl;
inherit (pkgs.emacs25Packages) proofgeneral;
polyml = polyml-5-4;
};
skypeforlinux = unstable.skypeforlinux;
};
}