mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
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)
8 lines
139 B
Nix
8 lines
139 B
Nix
{ system ? builtins.currentSystem }:
|
|
let
|
|
in (
|
|
(import ./lib/compat.nix).flake-compat {
|
|
src = ./.;
|
|
inherit system;
|
|
}
|
|
).shellNix
|