add .remoteenv
This commit is contained in:
parent
2f3bcaf124
commit
6289d4d1b4
|
@ -1,3 +1,4 @@
|
||||||
result*
|
result*
|
||||||
/configuration.nix
|
/configuration.nix
|
||||||
/.direnv/
|
/.direnv/
|
||||||
|
/.remote.toml
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# used by the `remote-exec` package
|
||||||
|
eval "$(nix print-dev-env .#default)"
|
||||||
|
# echo Entered "$(hostname --fqdn)" # just why systemd-networkd...
|
||||||
|
echo Entered "$(hostname)"
|
|
@ -0,0 +1,15 @@
|
||||||
|
# used by the `remote-exec` package
|
||||||
|
[push]
|
||||||
|
exclude = []
|
||||||
|
include = []
|
||||||
|
|
||||||
|
[pull]
|
||||||
|
exclude = ["*"]
|
||||||
|
|
||||||
|
[both]
|
||||||
|
exclude = [
|
||||||
|
".remote.toml",
|
||||||
|
".direnv",
|
||||||
|
"result*",
|
||||||
|
]
|
||||||
|
include = []
|
Loading…
Reference in New Issue