nix: add podman and enable on all systems

This commit is contained in:
steveej 2019-01-27 00:27:32 +01:00
parent 619b19ebc8
commit c9e75445d4
2 changed files with 7 additions and 0 deletions

View file

@ -35,5 +35,7 @@
usbutils usbutils
pciutils pciutils
podman
]; ];
} }

View file

@ -1,6 +1,11 @@
let let
nixpkgs-master = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs-channels/archive/de5fd9e6110489722e8667664dce9fdc17331866.tar.gz";
sha256 = "0z1j2pmvn15m2ir2i9l2prr81cq7f1x8xs4cv2s7q4fslz586ghn";
}) {};
in self: super: { in self: super: {
podman = nixpkgs-master.podman;
duplicacy = super.callPackage ./pkgs/duplicacy {}; duplicacy = super.callPackage ./pkgs/duplicacy {};
just = super.callPackage ./pkgs/just.nix {}; just = super.callPackage ./pkgs/just.nix {};