syncthing for home as a separate module
All checks were successful
/ build-all (push) Successful in 1m8s

This commit is contained in:
Antoine Vaure 2025-08-19 21:24:55 +02:00
parent f952c4121e
commit 7d99d996c9
2 changed files with 7 additions and 0 deletions

View file

@ -38,6 +38,7 @@
{ home.packages = [ nixgl.nixGLIntel ]; }
{ targets.genericLinux.enable = true; }
{ home.packages = [ inputs.st-flexipatch.packages.${system}.st ]; }
./home/syncthing.nix
];
};
@ -68,6 +69,7 @@
{ home.username = "ant"; }
./home/home.nix
{ home.packages = [ inputs.st-flexipatch.packages.${system}.st ]; }
./home/syncthing.nix
];
};
@ -84,6 +86,7 @@
{ home.username = "ant"; }
./home/home.nix
{ home.packages = [ inputs.st-flexipatch.packages.${system}.st ]; }
./home/syncthing.nix
];
};

4
home/syncthing.nix Normal file
View file

@ -0,0 +1,4 @@
{ config, pkgs, ... }:
{
services.syncthing.enable = true;
}