syncthing fiddeling
This commit is contained in:
parent
f3d6e88997
commit
b9be980ad3
7 changed files with 16 additions and 4 deletions
12
flake.nix
12
flake.nix
|
@ -260,7 +260,17 @@
|
|||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
nixos-hardware.nixosModules.common-gpu-intel
|
||||
];
|
||||
|
||||
home-manager.users.root = {
|
||||
home.stateVersion = "22.11";
|
||||
imports = [
|
||||
doom-emacs-nix.hmModule
|
||||
];
|
||||
programs.doom-emacs = {
|
||||
enable = true;
|
||||
emacsPackage = pkgs.emacs-nox;
|
||||
doomPrivateDir = ./doom.d;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
bobi = { name, nodes, pkgs, ... }: {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
home-manager.users.mainUser = {
|
||||
programs.doom-emacs = {
|
||||
enable = lib.mkDefault true;
|
||||
doomPrivateDir = ./doom.d;
|
||||
doomPrivateDir = ../../../doom.d;
|
||||
extraConfig = ''
|
||||
;; "monospace" means use the system default. However, the default is usually two
|
||||
;; points larger than I'd like, so I specify size 12 here.
|
||||
|
|
|
@ -74,7 +74,8 @@
|
|||
media = {
|
||||
enable = true;
|
||||
path = "/media/syncthing/media";
|
||||
rescanInterval = 120 * 3600;
|
||||
rescanInterval = 30 * 24 * 3600;
|
||||
type = "receiveonly";
|
||||
versioning = {
|
||||
type = "simple";
|
||||
params.keep = "3";
|
||||
|
|
|
@ -43,8 +43,9 @@
|
|||
media = {
|
||||
enable = true;
|
||||
watch = true;
|
||||
type = "sendonly";
|
||||
path = "/media/syncthing/media";
|
||||
rescanInterval = 3 * 24 * 3600;
|
||||
rescanInterval = 27 * 24 * 3600;
|
||||
};
|
||||
music-projects = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue