From c9e75445d46f55aef69bf0769ef6ce0e4565c619 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Sun, 27 Jan 2019 00:27:32 +0100 Subject: [PATCH] nix: add podman and enable on all systems --- nix/os/profiles/common/pkg.nix | 2 ++ nix/overlay.nix | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/nix/os/profiles/common/pkg.nix b/nix/os/profiles/common/pkg.nix index a4d1d64..720fcd8 100644 --- a/nix/os/profiles/common/pkg.nix +++ b/nix/os/profiles/common/pkg.nix @@ -35,5 +35,7 @@ usbutils pciutils + + podman ]; } diff --git a/nix/overlay.nix b/nix/overlay.nix index 7f0b3d5..0306421 100644 --- a/nix/overlay.nix +++ b/nix/overlay.nix @@ -1,6 +1,11 @@ let + nixpkgs-master = import (builtins.fetchTarball { + url = "https://github.com/NixOS/nixpkgs-channels/archive/de5fd9e6110489722e8667664dce9fdc17331866.tar.gz"; + sha256 = "0z1j2pmvn15m2ir2i9l2prr81cq7f1x8xs4cv2s7q4fslz586ghn"; + }) {}; in self: super: { + podman = nixpkgs-master.podman; duplicacy = super.callPackage ./pkgs/duplicacy {}; just = super.callPackage ./pkgs/just.nix {};