418 current 2025-06-09 01:58:50 25.05.20250424.f771eb4 6.12.24 *
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./picom/default.nix
|
./picom/default.nix
|
||||||
./dunst/default.nix
|
./dunst/default.nix
|
||||||
|
# ./syncthing/default.nix
|
||||||
# ./gpg-agent/default.nix
|
# ./gpg-agent/default.nix
|
||||||
# ./tailscale/default.nix
|
# ./tailscale/default.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -6,5 +6,6 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./synaptics/default.nix
|
./synaptics/default.nix
|
||||||
./tailscale/default.nix
|
./tailscale/default.nix
|
||||||
|
./syncthing/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
12
system/services/syncthing/default.nix
Normal file
12
system/services/syncthing/default.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
services.syncthing = {
|
||||||
|
enable = true;
|
||||||
|
# user = "synchronous";
|
||||||
|
# group = "syncthing";
|
||||||
|
openDefaultPorts = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -3,5 +3,10 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
services.tailscale.enable = true;
|
services.tailscale = {
|
||||||
|
enable = true;
|
||||||
|
authKeyFile = config.age.secrets.tailscale-rq.path;
|
||||||
|
|
||||||
|
# builtins.readFile config.age.secrets.tailscale-rq.path;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ in {
|
|||||||
users.users.synchronous = {
|
users.users.synchronous = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "jake";
|
description = "jake";
|
||||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
extraGroups = ["networkmanager" "wheel" "docker" "syncthing"];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# kdePackages.kate
|
# kdePackages.kate
|
||||||
# firefox
|
# firefox
|
||||||
|
|||||||
Reference in New Issue
Block a user