disko/default.nix
Jörg Thalheim 20bfa32750 disko: get rid of impure imports
This is a backwards-incompatible change but it allows to pin nixpkgs,
which is desirable especially in professional environments where
reproduciblity is important.
2022-08-17 14:53:43 +02:00

6 lines
110 B
Nix

{ lib ? (import <nixpkgs> {}).lib }: {
inherit (import ./lib {
inherit lib;
}) config create mount;
}