add wsl related stuff

This commit is contained in:
2026-06-20 23:36:05 -04:00
parent 8823ab0671
commit 46d0312b58
2 changed files with 46 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# dotfiles
## Stow
1. Install it:
``sudo dnf install stow``
2. Organize your repo like this:
```
~/dotfiles/
├── bash/
│ ├── .bashrc
│ └── .bashrc.d/ # everything here
├── nvim/
│ └── .config/nvim/
├── git/
│ └── .gitconfig
└── ...
```
3. stow it:
```
cd ~/dotfiles
stow bash
stow nvim
stow git
```
stow creates the symlinks automatically and handles conflicts nicely.
## WSL
[![OpenSSH](https://img.shields.io/badge/Windows-OpenSSH?style=flat-square&label=OpenSSH&color=blue
)](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=powershell&pivots=windows-11)
In windows enable OpenSSH Agent
(Learn OpenSSH)[]
```powershell
Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
```