Compare commits

...

15 commits

Author SHA1 Message Date
Bruno BELANYI ed70a90db6 WIP: add note about 'iwd'
Some checks failed
ci/woodpecker/push/check Pipeline failed
2024-11-28 22:04:14 +00:00
Bruno BELANYI 6db0a1f46b WIP: even more directories? Maybe? 2024-11-28 22:04:14 +00:00
Bruno BELANYI de64f025a1 WIP: add notes for missing persistence/backup
TODO:
* Do home-manager
* Look at for more inspiration github.com:nix-community/impermanence/pull/108
* Common files github.com:nix-community/impermanence/issues/10
* Useful config: github.com:chayleaf/dotfiles/blob/f77271b249e0c08368573c22a5c34f0737d3a766/system/modules/impermanence.nix
2024-11-28 22:04:14 +00:00
Bruno BELANYI 61b71f62ed nixos: services: vikunja: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 23028325df nixos: services: transmission: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 7cffcaeffe nixos: services: tandoor-recipes: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI cb58b2911e nixos: services: sabnzbd: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 09c719b105 nixos: services: rss-bridge: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 384e185882 nixos: services: quassel: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI eebd2f935a nixos: services: pyload: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 167dc8f90c nixos: services: postgresql-backup: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI c723c5a919 nixos: services: postgresql: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 70d65805d7 nixos: services: podgrab: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI 62d9ea8939 nixos: services: pirate: persist data 2024-11-28 22:04:14 +00:00
Bruno BELANYI c4b8acf944 nixos: services: pdf-edit: persist data 2024-11-28 22:04:14 +00:00
22 changed files with 90 additions and 0 deletions

View file

@ -23,6 +23,8 @@ in
(lib.mkIf cfg.wireless.enable {
networking.networkmanager.enable = true;
# IWD needs persistence if enabled
# Persist NetworkManager files
my.system.persist.files = [
"/var/lib/NetworkManager/secret_key"

View file

@ -39,5 +39,7 @@ in
extraGroups = [ "docker" ]; # Give access to the daemon
};
users.groups.drone-runner-docker = { };
# FIXME: persistence?
};
}

View file

@ -63,5 +63,7 @@ in
group = "drone-runner-exec";
};
users.groups.drone-runner-exec = { };
# FIXME: persistence?
};
}

View file

@ -50,5 +50,7 @@ in
inherit (cfg) port;
};
};
# FIXME: persistence?
};
}

View file

@ -46,5 +46,7 @@ in
];
};
};
# FIXME: persistence?
};
}

View file

@ -54,6 +54,10 @@ in
};
};
my.system.persist.directories = [
"/var/lib/${config.systemd.services.stirling-pdf.serviceConfig.StateDirectory}"
];
services.fail2ban.jails = {
stirling-pdf = ''
enabled = true

View file

@ -51,5 +51,10 @@ in
inherit (cfg) port;
};
};
my.system.persist.directories = [
config.systemd.services.podgrab.environment.CONFIG
config.systemd.services.podgrab.environment.DATA
];
};
}

View file

@ -24,5 +24,9 @@ in
(config.services.postgresqlBackup.location + "/*.prev.sql.gz")
];
};
my.system.persist.directories = [
config.services.postgresqlBackup.location
];
};
}

View file

@ -18,6 +18,13 @@ in
};
})
# Only persist directory if the actual service is enabled
(lib.mkIf config.services.postgresql.enable {
my.system.persist.directories = [
config.services.postgresql.dataDir
];
})
# Taken from the manual
(lib.mkIf cfg.upgradeScript {
environment.systemPackages =

View file

@ -53,6 +53,11 @@ in
};
};
my.system.persist.directories = [
cfg.downloadDirectory
"/var/lib/${config.systemd.services.pyload.StateDirectory}"
];
services.fail2ban.jails = {
pyload = ''
enabled = true

View file

@ -46,5 +46,9 @@ in
# Because Quassel does not use the socket, I simply trust its connection
authentication = "host quassel quassel localhost trust";
};
my.system.persist.directories = [
config.services.quassel.dataDir
];
};
}

View file

@ -22,5 +22,9 @@ in
forceSSL = true;
useACMEHost = config.networking.domain;
};
my.system.persist.directories = [
config.services.rss-bridge.dataDir
];
};
}

View file

@ -24,6 +24,10 @@ in
};
};
my.system.persist.files = [
config.services.sabnzbd.configFile
];
services.fail2ban.jails = {
sabnzbd = ''
enabled = true

View file

@ -19,6 +19,16 @@ let
enable = true;
group = "media";
};
my.system.persist.directories =
let
# Bazarr breaks the mold unfortunately
dataDir =
if service != "bazarr"
then config.services.${service}.dataDir
else config.users.user.${service}.home;
in
[ dataDir ];
};
mkRedirection = service: {

View file

@ -83,6 +83,19 @@ in
};
};
my.services.backup = {
paths = [
"/var/lib/${config.systemd.services.tandoor-recipes.StateDirectory}"
config.systemd.services.tandoor-recipes.environment.MEDIA_ROOT
];
};
my.system.persist.directories = [
"/var/lib/${config.systemd.services.tandoor-recipes.StateDirectory}"
config.systemd.services.tandoor-recipes.environment.MEDIA_ROOT
];
# NOTE: unfortunately tandoor-recipes does not log connection failures for fail2ban
};
}

View file

@ -91,6 +91,10 @@ in
allowedUDPPorts = [ cfg.peerPort ];
};
my.system.persist.directories = [
config.services.transmission.home
];
# NOTE: unfortunately transmission does not log connection failures for fail2ban
};
}

View file

@ -100,6 +100,10 @@ in
];
};
my.system.persist.directories = [
config.services.vikunja.settings.files.basepath
];
# NOTE: unfortunately vikunja does not log connection failures for fail2ban
};
}

View file

@ -38,5 +38,7 @@ in
];
};
};
# FIXME: persistence?
};
}

View file

@ -62,5 +62,7 @@ in
];
};
};
# FIXME: persistence?
};
}

View file

@ -61,5 +61,7 @@ in
port = cfg.rpcPort;
};
};
# FIXME: persistence
};
}

View file

@ -58,6 +58,10 @@ in
"/var/log" # Logs
"/var/lib/nixos" # UID/GID maps
"/var/lib/systemd/coredump" # Coredumps
"/var/lib/systemd" # FIXME: needed?
"/var/spool" # FIXME: needed?
"/var/tmp" # FIXME: needed?
]
++ cfg.directories
;

View file

@ -65,5 +65,7 @@ in
# Allow resolution of '.local' addresses
nssmdns4 = true;
};
# FIXME: persistence?
};
}