Move home syncthing setup to hyprland, without tray
Make server syncthing devices transient, keep folders declarative though
This commit is contained in:
parent
461d2580dc
commit
825002f0ec
|
@ -56,7 +56,6 @@
|
|||
./home/media.nix
|
||||
./home/nnn.nix
|
||||
./home/pass.nix
|
||||
./home/syncthing.nix
|
||||
./home/zathura.nix
|
||||
];
|
||||
stateVersion = "23.05";
|
||||
|
|
|
@ -10,7 +10,10 @@
|
|||
./rofi.nix
|
||||
];
|
||||
home.packages = [ anyrun.packages.${pkgs.system}.default ];
|
||||
services.avizo.enable = true;
|
||||
services = {
|
||||
avizo.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
tray.enable = true;
|
||||
};
|
||||
}
|
|
@ -4,6 +4,8 @@ in {
|
|||
services.syncthing = {
|
||||
enable = true;
|
||||
systemService = true;
|
||||
overrideDevices = false;
|
||||
overrideFolders = true;
|
||||
openDefaultPorts = true;
|
||||
settings = {
|
||||
devices = {
|
||||
|
|
Loading…
Reference in a new issue