Getting syncthing working. Removing ctrl-A key binding for now

This commit is contained in:
Dustin Swan 2026-01-10 16:32:55 -07:00
parent 1cfc1e074a
commit bd36e83523
No known key found for this signature in database
GPG key ID: 30D46587E2100467
2 changed files with 21 additions and 1 deletions

View file

@ -73,7 +73,7 @@
# macOS-style Super/Cmd shortcuts (Dvorak physical positions)
meta = {
a = "C-a"; # Cmd+a → select all
# a = "C-a"; # Cmd+a → select all
i = "C-i"; # Cmd+c → copy (dvorak 'c' = qwerty 'i')
k = "C-k"; # Cmd+t → new tab (dvorak 't' = qwerty 'k')
l = "C-l"; # Cmd+n → new window (dvorak 'n' = qwerty 'l')

View file

@ -1,5 +1,9 @@
{pkgs, lib, ... }:
let
secrets = import ./secrets.nix;
in
{
home.homeDirectory = "/home/dustinswan";
@ -63,6 +67,22 @@
services.syncthing = {
enable = true;
settings = {
devices = {
"Laptop" = { id = secrets.syncthing.laptop; };
"Phone" = { id = secrets.syncthing.phone; };
};
folders = {
"Camera" = {
path = "~/Camera";
devices = [ "Laptop" "Phone" ];
};
"Sync" = {
path = "~/Sync";
devices = [ "Laptop" "Phone" ];
};
};
};
};
services.gpg-agent = {