mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 03:07:32 -08:00
default not enabled syncthing and change module location
This commit is contained in:
parent
6853d1b64e
commit
7d087eb0c2
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -4,6 +4,7 @@
|
||||
./git.nix
|
||||
./chezmoi.nix
|
||||
./kitty.nix
|
||||
./syncthing.nix
|
||||
./yt-dlp.nix
|
||||
];
|
||||
}
|
||||
|
@ -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;
|
@ -1,4 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [ ./peripherals.nix ./samba-client.nix ./syncthing.nix ./virt-manager.nix ];
|
||||
imports = [ ./peripherals.nix ./samba-client.nix ./virt-manager.nix ];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user