mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
default not enabled syncthing and change module location
This commit is contained in:
parent
6853d1b64e
commit
7d087eb0c2
@ -31,9 +31,6 @@
|
|||||||
programs = {
|
programs = {
|
||||||
chezmoi.apply = true;
|
chezmoi.apply = true;
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
};
|
|
||||||
services = {
|
|
||||||
samba-client.enable = true;
|
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
keyPath = ../../secrets/syncthing/bulwark/key.pem.age;
|
keyPath = ../../secrets/syncthing/bulwark/key.pem.age;
|
||||||
@ -43,6 +40,9 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services = {
|
||||||
|
samba-client.enable = true;
|
||||||
|
};
|
||||||
system = {
|
system = {
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
terminal.enable = true;
|
terminal.enable = true;
|
||||||
|
@ -51,11 +51,6 @@
|
|||||||
programs = {
|
programs = {
|
||||||
chezmoi.apply = true;
|
chezmoi.apply = true;
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
};
|
|
||||||
services = {
|
|
||||||
peripherals.enable = true;
|
|
||||||
samba-client.enable = true;
|
|
||||||
virt-manager.enable = true;
|
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
keyPath = ../../secrets/syncthing/kestrel/key.pem.age;
|
keyPath = ../../secrets/syncthing/kestrel/key.pem.age;
|
||||||
@ -65,6 +60,11 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services = {
|
||||||
|
peripherals.enable = true;
|
||||||
|
samba-client.enable = true;
|
||||||
|
virt-manager.enable = true;
|
||||||
|
};
|
||||||
system = {
|
system = {
|
||||||
backup.enable = true;
|
backup.enable = true;
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
./git.nix
|
./git.nix
|
||||||
./chezmoi.nix
|
./chezmoi.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
|
./syncthing.nix
|
||||||
./yt-dlp.nix
|
./yt-dlp.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ in {
|
|||||||
options.modules.services.syncthing = with lib; {
|
options.modules.services.syncthing = with lib; {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
};
|
};
|
||||||
keyPath = mkOption {
|
keyPath = mkOption {
|
||||||
type = types.path;
|
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