Add syncthing

This commit is contained in:
Nathan McCarty 2025-01-09 12:03:03 -05:00
parent bcd0288107
commit faef61c066
2 changed files with 26 additions and 0 deletions

View file

@ -28,6 +28,7 @@
../../modules/programs/ssh.nix ../../modules/programs/ssh.nix
(import ../../modules/programs/emacs.nix { }) (import ../../modules/programs/emacs.nix { })
../../modules/programs/fonts.nix ../../modules/programs/fonts.nix
../../modules/programs/desktop.nix
]; ];
home.username = "nathan"; home.username = "nathan";
home.homeDirectory = "/home/nathan/"; home.homeDirectory = "/home/nathan/";
@ -40,6 +41,13 @@
# Machine specific configuration # Machine specific configuration
services.emacs.defaultEditor = true; services.emacs.defaultEditor = true;
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = [ "graphical-session-pre.target" ];
};
};
} }
) )
]; ];

View file

@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}:
{
home.packages = with pkgs; [
];
services.syncthing = {
enable = true;
tray = {
enable = true;
};
};
}