shell: Added shell + .envrc for isRemote

This commit is contained in:
kat witch 2021-04-28 22:06:39 +01:00
parent 358253af71
commit 9123407777
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 8 additions and 0 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
with (import <nixpkgs> {});
mkShell {
shellHook = ''
export HOME_HOSTNAME=$(hostname -s)
'';
}