mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-27 00:34:58 +08:00
11 lines
293 B
Nix
11 lines
293 B
Nix
with (import <nixpkgs> {});
|
|
let
|
|
hello-flake = ( builtins.getFlake
|
|
git+https://codeberg.org/mhwombat/hello-flake?ref=main&rev=3aa43dbe7be878dde7b2bdcbe992fe1705da3150
|
|
).packages.${builtins.currentSystem}.default;
|
|
in
|
|
mkShell {
|
|
buildInputs = [
|
|
hello-flake
|
|
];
|
|
}
|