me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix deprecation warnings

author
Sean Aye
date (Jun 15, 2026, 10:20 PM -0400) commit 39cc10f1 parent 6d76d1d0 change-id yrsrmsyz
+6 -6
+2
modules/desktop.nix
··· 8 8 9 9 catppuccin = { 10 10 enable = true; 11 + autoEnable = true; 11 12 flavor = "frappe"; 12 13 }; 13 14 ··· 378 379 379 380 catppuccin = { 380 381 enable = true; 382 + autoEnable = true; 381 383 flavor = "frappe"; 382 384 }; 383 385
+4 -6
modules/sean.nix
··· 60 60 programs.ssh = { 61 61 enable = true; 62 62 enableDefaultConfig = false; 63 - matchBlocks = { 64 - "*" = { 65 - identityFile = [ 66 - "${config.home.homeDirectory}/.ssh/id_ed25519_sk_rk" 67 - ]; 68 - }; 63 + settings."*" = { 64 + IdentityFile = [ 65 + "${config.home.homeDirectory}/.ssh/id_ed25519_sk_rk" 66 + ]; 69 67 }; 70 68 }; 71 69