kubenix/default.nix
David Arnold ee9b4adfc8
ref: non-flake compatibility
since this is purely a legacy concern (both default.nix and shell.nix),
we avoid to include the flake-compat as a flake input.

(even though unused inputs are lazily fetched - for style & clarity)
2021-05-31 17:25:05 -05:00

8 lines
141 B
Nix

{ system ? builtins.currentSystem }:
let
in (
(import ./lib/compat.nix).flake-compat {
src = ./.;
inherit system;
}
).defaultNix