summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/default.nix16
1 files changed, 1 insertions, 15 deletions
diff --git a/home/default.nix b/home/default.nix
index bc7026d..8481adb 100644
--- a/home/default.nix
+++ b/home/default.nix
@@ -1,8 +1,4 @@
-{
- config,
- pkgs,
- ...
-}: {
+{pkgs, ...}: {
personal = {
profiles = {
dev = true;
@@ -25,15 +21,5 @@
sudo ${pkgs.screen}/bin/screen $@
}
'';
-
- # necessary because the hephaistos remote builder sets
- # nixremote as default ssh user
- ssh = {
- enable = true;
- matchBlocks."hephaistos.local" = {
- user = config.home.username;
- extraOptions.IdentitiesOnly = "no";
- };
- };
};
}