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

7 lines
104 B
Nix

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