default not enabled syncthing and change module location

This commit is contained in:
Tyler Starr 2024-10-23 08:53:27 -07:00
parent 6853d1b64e
commit 7d087eb0c2
5 changed files with 11 additions and 10 deletions

View File

@ -31,9 +31,6 @@
programs = {
chezmoi.apply = true;
kitty.enable = true;
};
services = {
samba-client.enable = true;
syncthing = {
enable = true;
keyPath = ../../secrets/syncthing/bulwark/key.pem.age;
@ -43,6 +40,9 @@
};
};
};
services = {
samba-client.enable = true;
};
system = {
ssh.enable = true;
terminal.enable = true;

View File

@ -51,11 +51,6 @@
programs = {
chezmoi.apply = true;
kitty.enable = true;
};
services = {
peripherals.enable = true;
samba-client.enable = true;
virt-manager.enable = true;
syncthing = {
enable = true;
keyPath = ../../secrets/syncthing/kestrel/key.pem.age;
@ -65,6 +60,11 @@
};
};
};
services = {
peripherals.enable = true;
samba-client.enable = true;
virt-manager.enable = true;
};
system = {
backup.enable = true;
ssh.enable = true;

View File

@ -4,6 +4,7 @@
./git.nix
./chezmoi.nix
./kitty.nix
./syncthing.nix
./yt-dlp.nix
];
}

View File

@ -5,7 +5,7 @@ in {
options.modules.services.syncthing = with lib; {
enable = lib.mkOption {
type = types.bool;
default = true;
default = false;
};
keyPath = mkOption {
type = types.path;

View File

@ -1,4 +1,4 @@
{ ... }:
{
imports = [ ./peripherals.nix ./samba-client.nix ./syncthing.nix ./virt-manager.nix ];
imports = [ ./peripherals.nix ./samba-client.nix ./virt-manager.nix ];
}