summaryrefslogtreecommitdiff
path: root/hosts/wsl/default.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-24 11:51:39 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-24 11:51:39 -0400
commitd639c293ad1ba71008aeb5c54c40f59a076018dc (patch)
treee832a3f0ee5044c8b35e5642f07a62137bbffc2c /hosts/wsl/default.nix
parentupdate ssh config (diff)
downloaddotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.gz
dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.bz2
dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.zip
redo lib, make global vars for key lists
Diffstat (limited to 'hosts/wsl/default.nix')
-rw-r--r--hosts/wsl/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/wsl/default.nix b/hosts/wsl/default.nix
index 55feeb2..dae77b5 100644
--- a/hosts/wsl/default.nix
+++ b/hosts/wsl/default.nix
@@ -16,4 +16,11 @@
sphinx
inputs.self.packages.${system}.arcanist
];
+
+ # wsl ssh key
+ home-manager.users.${config.user} = {
+ programs.ssh = {
+ extraConfig = "IdentityFile ~/.ssh/id_wsl\n";
+ };
+ };
}