Compare commits

..

24 commits

Author SHA1 Message Date
Bruno BELANYI f80d1684df WIP: add notes for missing persistence/backup
Some checks failed
ci/woodpecker/push/check Pipeline failed
TODO:
* Look at for more inspiration https://github.com/nix-community/impermanence/pull/108
* Do home-manager
* Common files https://github.com/nix-community/impermanence/issues/10
* Useful config: f77271b249/system/modules/impermanence.nix
2024-11-28 20:29:29 +00:00
Bruno BELANYI c2b38a9fcd nixos: services: quassel: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 775d7a44cd nixos: services: pirate: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 17255be516 nixos: services: monitoring: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 8aa4184eb9 nixos: services: nginx: persist SSL certificates 2024-11-28 20:29:14 +00:00
Bruno BELANYI 9bd98ec1b6 nixos: services: transmission: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 096fbac0b3 nixos: services: sabnzbd: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 324f7c56de nixos: services: rss-bridge: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI e7683ddd9b nixos: services: podgrab: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 1fdfbe1faa nixos: services: nextcloud: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 4d3ef9ff43 nixos: services: navidrome: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 470ecbef1f nixos: services: lohr: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI f92dbaba77 nixos: services: jellyfin: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 95dbbbcfc1 nixos: services: indexers: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 2d8cc9399d nixos: services: postgresql: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI e7c3db73db nixos: services: postgresql-backup: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 4fd82e1c53 nixos: services: paperless: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI e6dcd4120b nixos: services: matrix: persist data 2024-11-28 20:29:14 +00:00
Bruno BELANYI ad66b2706f nixos: services: forgejo: persist repositories 2024-11-28 20:29:14 +00:00
Bruno BELANYI 3de71fb498 nixos: services: gitea: persist repositories 2024-11-28 20:29:14 +00:00
Bruno BELANYI 908acab1b2 nixos: services: calibre-web: persist library 2024-11-28 20:29:14 +00:00
Bruno BELANYI 356399ced8 nixos: services: blog: persist website data 2024-11-28 20:29:14 +00:00
Bruno BELANYI 8dc6b19c6e nixos: services: ssh-server: persist host keys 2024-11-28 20:29:14 +00:00
Bruno BELANYI 4be4f5e3cd nixos: hardware: networking persist connections 2024-11-28 20:29:14 +00:00
2 changed files with 7 additions and 0 deletions

View file

@ -24,6 +24,11 @@ in
networking.networkmanager.enable = true;
# Persist NetworkManager files
my.system.persist.files = [
"/var/lib/NetworkManager/secret_key"
"/var/lib/NetworkManager/seen-bssids"
"/var/lib/NetworkManager/timestamps"
];
my.system.persist.directories = [
"/etc/NetworkManager/system-connections"
];

View file

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