Compare commits
6 commits
0177d29d29
...
e9d3a1169d
Author | SHA1 | Date | |
---|---|---|---|
e9d3a1169d | |||
50da32322e | |||
75b2ffba0b | |||
dcf4104050 | |||
29ba119e3f | |||
375b893a43 |
4 changed files with 12 additions and 8 deletions
|
@ -16,6 +16,8 @@ in {
|
||||||
"${system}/programs/gnome.nix"
|
"${system}/programs/gnome.nix"
|
||||||
"${system}/programs/games.nix"
|
"${system}/programs/games.nix"
|
||||||
"${system}/hardware/nvidia.nix"
|
"${system}/hardware/nvidia.nix"
|
||||||
|
|
||||||
|
"${system}/services/syncthing.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
|
@ -24,6 +24,8 @@ in {
|
||||||
"${system}/programs/niri"
|
"${system}/programs/niri"
|
||||||
"${system}/services/gnome.nix"
|
"${system}/services/gnome.nix"
|
||||||
"${system}/services/mail.nix"
|
"${system}/services/mail.nix"
|
||||||
|
|
||||||
|
"${system}/services/syncthing.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
8
system/services/syncthing.nix
Normal file
8
system/services/syncthing.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
syncthing = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.services.syncthing.environment.STNODEFAULTFOLDER = "true"; # Don't create default ~/Sync folder
|
||||||
|
}
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
services = {
|
|
||||||
syncthing = {
|
|
||||||
enable = true;
|
|
||||||
systemd.services.syncthing.environment.STNODEFAULTFOLDER = "true"; # Don't create default ~/Sync folder
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue