summaryrefslogtreecommitdiff
path: root/home/default.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-03-23 15:16:08 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2025-03-23 15:16:08 +0100
commitf9d40a57ef24570e45e5954bb7d9847c354e0951 (patch)
tree8a0b516e57864671fece6493553bcb1a557cc887 /home/default.nix
parent6ba4c55398404c1f691095967f3afca5e3209c89 (diff)
home: remove ssh identity profile (unneeded)
Diffstat (limited to 'home/default.nix')
-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";
- };
- };
};
}