Translations:Flakes/200/zh
outputs = { self, nixpkgs}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
hello
];
shellHook =
echo "欢迎进入 devShell!"
;
};
};
} </syntaxhighlight>