2026-06-26 21:18:52 -04:00
2026-06-26 20:03:25 -04:00
2026-06-26 21:18:52 -04:00
2026-06-26 20:23:03 -04:00
2026-06-26 20:23:03 -04:00
2026-06-26 19:53:35 -04:00
2026-06-26 20:30:37 -04:00
2026-06-20 23:43:05 -04:00

dotfiles

built with Grok

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
└── ...
  1. stow it:
cd ~/dotfiles
stow bash
stow nvim
stow git

stow creates the symlinks automatically and handles conflicts nicely.

WSL

Resources:

Install

OpenSSH

Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
# Install the OpenSSH Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0

# Install the OpenSSH Server
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
# Start the sshd service
Start-Service sshd

# OPTIONAL but recommended:
Set-Service -Name sshd -StartupType 'Automatic'

# Confirm the Firewall rule is configured. It should be created automatically by setup. Run the following to verify
if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue)) {
    Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..."
    New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
} else {
    Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists."
}
Set-Service -Name 'ssh-agent' -StartupType Automatic
Start-Service ssh-agent
S
Description
My settings
Readme
332 KiB
Languages
Shell 95.7%
Lua 4.3%