feat: add extension to fix links

This commit is contained in:
2026-01-25 19:37:09 -05:00
parent 5eb2d1c3e2
commit 15afc3d9d8
7 changed files with 48 additions and 5 deletions

View File

@@ -4,6 +4,7 @@
sansSerif = [ "SF Pro" ];
serif = [ "SF Pro" ];
monospace = [ "JetBrainsMono Nerd Font" ];
emoji = [ "Apple Color Emoji" ];
};
packages = with pkgs; [

View File

@@ -0,0 +1,20 @@
{ ... }:
{
services.syncthing = {
enable = true;
openDefaultPorts = true;
settings = {
devices = {
"phone" = { id = "DBTMZ3P-VONFNYH-LDDNIO3-ZZ2TKO5-QFVV5D4-W4FMV67-HUTIJQB-UHNF3QM"; };
};
folders = {
"Music" = {
path = "/home/max/media/music";
devices = [ "phone" ];
};
};
};
};
}