Compare commits

...

29 commits

Author SHA1 Message Date
Bruno BELANYI 38268c61ea nixos: system: podman: persist data
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-11-07 14:59:35 +00:00
Bruno BELANYI 7b9a04ba86 nixos: system: docker: persist data 2024-11-07 14:59:35 +00:00
Bruno BELANYI 906299a1ef WIP: add notes for missing persistence/backup
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
2024-11-07 14:59:09 +00:00
Bruno BELANYI f41f974e5f nixos: services: quassel: persist data 2024-11-07 14:55:53 +00:00
Bruno BELANYI 380991d5a7 nixos: services: pirate: persist data 2024-11-07 14:55:53 +00:00
Bruno BELANYI 6091c0ccd6 nixos: services: monitoring: persist data 2024-11-07 14:55:53 +00:00
Bruno BELANYI 9fca6c2011 nixos: services: nginx: persist SSL certificates 2024-11-07 14:55:52 +00:00
Bruno BELANYI 53a0a1f613 nixos: services: transmission: persist data 2024-11-07 14:55:50 +00:00
Bruno BELANYI d1521a4a85 nixos: services: sabnzbd: persist data 2024-11-07 14:55:32 +00:00
Bruno BELANYI a8f3a5b6cc nixos: services: rss-bridge: persist data 2024-11-07 14:55:32 +00:00
Bruno BELANYI 576f18e083 nixos: services: podgrab: persist data 2024-11-07 14:55:32 +00:00
Bruno BELANYI e5e9769f5c nixos: services: nextcloud: persist data 2024-11-07 14:55:31 +00:00
Bruno BELANYI 740432cd90 nixos: services: navidrome: persist data 2024-11-07 14:55:12 +00:00
Bruno BELANYI 738c50c05e nixos: services: lohr: persist data 2024-11-07 14:54:52 +00:00
Bruno BELANYI 2f0d9cf70d nixos: services: jellyfin: persist data 2024-11-07 14:54:50 +00:00
Bruno BELANYI 2c51cb52c6 nixos: services: indexers: persist data 2024-11-07 14:54:00 +00:00
Bruno BELANYI 74b1c5a83d nixos: services: postgresql: persist data 2024-11-07 14:54:00 +00:00
Bruno BELANYI 463aa0a80c nixos: services: postgresql-backup: persist data 2024-11-07 14:54:00 +00:00
Bruno BELANYI 1d8c10ecf5 nixos: services: paperless: persist data 2024-11-07 14:54:00 +00:00
Bruno BELANYI c108c04ff8 nixos: services: matrix: persist data 2024-11-07 14:54:00 +00:00
Bruno BELANYI da9d84da3d nixos: services: forgejo: persist repositories 2024-11-07 14:54:00 +00:00
Bruno BELANYI 270c3a560d nixos: services: gitea: persist repositories 2024-11-07 14:54:00 +00:00
Bruno BELANYI 136de66291 nixos: services: calibre-web: persist library 2024-11-07 14:54:00 +00:00
Bruno BELANYI 04439f1d95 nixos: services: blog: persist website data 2024-11-07 14:54:00 +00:00
Bruno BELANYI 0744d8ea86 nixos: hardware: bluetooth: persist connections 2024-11-07 14:54:00 +00:00
Bruno BELANYI a877570e4d nixos: hardware: netowrking persist connections 2024-11-07 14:54:00 +00:00
Bruno BELANYI aedd0798e8 nixos: services: ssh-server: persist host keys 2024-11-07 14:54:00 +00:00
Bruno BELANYI 5a0197922e WIP: nixos: system: add persist
This is the module that takes care of configuring impermanence at the
system level.

WIP:
    * address FIXMEs
    * activate home-manager persistence?
        * set `programs.fuse.userAllowOther = true;` ?
    * point `age` to persisted paths [1] ?
    * make sure all services and modules are persisted correctly...

[1]: b1d18d25b8
2024-11-07 14:53:59 +00:00
Bruno BELANYI 26495fc8b2 flake: add 'impermanence' 2024-11-07 14:53:59 +00:00
40 changed files with 249 additions and 0 deletions

View file

@ -150,6 +150,22 @@
"type": "github"
}
},
"impermanence": {
"locked": {
"lastModified": 1697303681,
"narHash": "sha256-caJ0rXeagaih+xTgRduYtYKL1rZ9ylh06CIrt1w5B4g=",
"owner": "nix-community",
"repo": "impermanence",
"rev": "0f317c2e9e56550ce12323eb39302d251618f5b5",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "master",
"repo": "impermanence",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1730785428,
@ -214,6 +230,7 @@
"flake-parts": "flake-parts",
"futils": "futils",
"home-manager": "home-manager",
"impermanence": "impermanence",
"nixpkgs": "nixpkgs",
"nur": "nur",
"pre-commit-hooks": "pre-commit-hooks",

View file

@ -43,6 +43,13 @@
};
};
impermanence = {
type = "github";
owner = "nix-community";
repo = "impermanence";
ref = "master";
};
nixpkgs = {
type = "github";
owner = "NixOS";

View file

@ -18,6 +18,13 @@ in
services.blueman.enable = true;
}
# Persist bluetooth files
{
my.system.persist.directories = [
"/var/lib/bluetooth"
];
}
# Support for additional bluetooth codecs
(lib.mkIf cfg.loadExtraCodecs {
hardware.pulseaudio = {

View file

@ -22,6 +22,11 @@ in
config = lib.mkMerge [
(lib.mkIf cfg.wireless.enable {
networking.networkmanager.enable = true;
# Persist NetworkManager files
my.system.persist.directories = [
"/etc/NetworkManager/system-connections"
];
})
];
}

View file

@ -71,6 +71,8 @@ in
};
};
# FIXME: persistence?
# NOTE: unfortunately aria2 does not log connection failures for fail2ban
};
}

View file

@ -36,6 +36,8 @@ in
};
};
# FIXME: persistence?
services.fail2ban.jails = {
audiobookshelf = ''
enabled = true

View file

@ -41,5 +41,12 @@ in
# Those are all subdomains, no problem
my.services.nginx.virtualHosts = hostsInfo;
my.system.persist.directories = [
"/var/www/blog"
"/var/www/cv"
"/var/www/dev"
"/var/www/key"
];
};
}

View file

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

View file

@ -28,6 +28,8 @@ in
};
};
# FIXME: persistence?
# NOTE: unfortunately flood does not log connection failures for fail2ban
};
}

View file

@ -147,6 +147,11 @@ in
];
};
my.system.persist.directories = [
config.services.gitea.lfs.contentDir
config.services.gitea.repositoryRoot
];
services.fail2ban.jails = {
forgejo = ''
enabled = true

View file

@ -131,6 +131,11 @@ in
];
};
my.system.persist.directories = [
config.services.gitea.lfs.contentDir
config.services.gitea.repositoryRoot
];
services.fail2ban.jails = {
gitea = ''
enabled = true

View file

@ -37,6 +37,9 @@ in
useACMEHost = config.networking.domain;
};
# FIXME: backup
# FIXME: persistence
# NOTE: unfortunately grocy does not log connection failures for fail2ban
};
}

View file

@ -33,6 +33,10 @@ in
port = jackettPort;
};
};
my.system.persist.directories = [
config.services.jackett.dataDir
];
})
(lib.mkIf cfg.nzbhydra.enable {
@ -45,6 +49,10 @@ in
port = nzbhydraPort;
};
};
my.system.persist.directories = [
config.services.nzbhydra2.dataDir
];
})
(lib.mkIf cfg.prowlarr.enable {
@ -58,6 +66,10 @@ in
};
};
my.system.persist.directories = [
"/var/lib/${config.systemd.services.prowlarr.serviceConfig.StateDirectory}"
];
services.fail2ban.jails = {
prowlarr = ''
enabled = true

View file

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

View file

@ -107,5 +107,9 @@ in
};
};
};
my.system.persist.directories = [
"/var/lib/${config.systemd.services.lohr.serviceConfig.StateDirectory}"
];
};
}

View file

@ -214,5 +214,9 @@ in
config.services.matrix-synapse.dataDir
];
};
my.system.persist.directories = [
config.services.matrix-synapse.dataDir
];
};
}

View file

@ -72,6 +72,9 @@ in
};
};
# FIXME: backup
# FIXME: persistence
services.fail2ban.jails = {
mealie = ''
enabled = true

View file

@ -49,6 +49,9 @@ in
};
};
# FIXME: backup
# FIXME: persistence
services.fail2ban.jails = {
miniflux = ''
enabled = true

View file

@ -130,5 +130,10 @@ in
inherit (cfg.grafana) port;
};
};
my.system.persist.directories = [
config.services.grafana.dataDir
"/var/lib/${config.services.prometheus.stateDir}"
];
};
}

View file

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

View file

@ -88,6 +88,11 @@ in
];
};
my.system.persist.directories = [
config.services.nextcloud.home
config.services.nextcloud.datadir
];
services.fail2ban.jails = {
nextcloud = ''
enabled = true

View file

@ -457,5 +457,9 @@ in
}
];
};
my.system.persist.directories = [
config.users.user.acme.home
];
};
}

View file

@ -166,5 +166,10 @@ in
config.services.paperless.mediaDir
];
};
my.system.persist.directories = [
config.services.paperless-ng.dataDir
config.services.paperless-ng.mediaDir
];
};
}

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,9 @@ in
};
};
# FIXME: backup
# FIXME: persistence
# FIXME: fail2ban
};
}

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,11 @@ let
enable = true;
group = "media";
};
# Thankfully those old style services all define users with homes
my.system.persist.directories = [
config.users.user.${service}.home
];
};
mkRedirection = service: {

View file

@ -20,6 +20,14 @@ in
};
};
# Persist SSH keys
my.system.persist.files = [
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_rsa_key.pub"
];
# Opens the relevant UDP ports.
programs.mosh.enable = true;
};

View file

@ -83,6 +83,9 @@ in
};
};
# FIXME: backup
# FIXME: persistence
# 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,8 @@ in
];
};
# FIXME: persistence
# NOTE: unfortunately vikunja does not log connection failures for fail2ban
};
}

View file

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

View file

@ -9,6 +9,7 @@
./language
./nix
./packages
./persist
./podman
./polkit
./printing

View file

@ -23,5 +23,9 @@ in
];
};
};
my.system.persist.directories = [
"/var/lib/docker"
];
};
}

View file

@ -0,0 +1,65 @@
# Ephemeral root configuration
{ config, inputs, lib, ... }:
let
cfg = config.my.system.persist;
in
{
imports = [
inputs.impermanence.nixosModules.impermanence
];
options.my.system.persist = with lib; {
enable = mkEnableOption "stateless system configuration";
mountPoint = lib.mkOption {
type = types.str;
default = "/persistent";
example = "/etc/nix/persist";
description = ''
Which mount point should be used to persist this system's files and
directories.
'';
};
files = lib.mkOption {
type = with types; listOf str;
default = [ ];
example = [
"/etc/nix/id_rsa"
];
description = ''
Additional files in the root to link to persistent storage.
'';
};
directories = lib.mkOption {
type = with types; listOf str;
default = [ ];
example = [
"/var/lib/libvirt"
];
description = ''
Additional directories in the root to link to persistent storage.
'';
};
};
config = lib.mkIf cfg.enable {
environment.persistence."${cfg.mountPoint}" = {
files = [
"/etc/machine-id"
]
++ cfg.files
;
directories = [
"/etc/nixos"
"/var/log"
"/var/lib/nixos"
"/var/lib/systemd/coredump"
]
++ cfg.directories
;
};
};
}

View file

@ -44,5 +44,9 @@ in
];
};
};
my.system.persist.directories = [
"/var/lib/containers"
];
};
}