infrastructure/shell.nix
2021-04-28 22:36:36 +01:00

7 lines
105 B
Nix

with (import <nixpkgs> { });
mkShell {
shellHook = ''
export HOME_HOSTNAME=$(hostname -s)
'';
}