From 2b75ee689d1b66d200cd24c8749e82c46ccc694a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 9 May 2022 15:40:15 +0200 Subject: refactor(users/tazjin): Extract non-home persistence config This will be reused between machines. Change-Id: Ice7835ce7e63b00284e046606309e882412cda26 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5547 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: tazjin --- users/tazjin/nixos/modules/persistence.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 users/tazjin/nixos/modules/persistence.nix (limited to 'users/tazjin/nixos/modules/persistence.nix') diff --git a/users/tazjin/nixos/modules/persistence.nix b/users/tazjin/nixos/modules/persistence.nix new file mode 100644 index 0000000000..c07ec9227c --- /dev/null +++ b/users/tazjin/nixos/modules/persistence.nix @@ -0,0 +1,24 @@ +# Configuration for persistent (non-home) data. +{ depot, pkgs, lib, ... }: + +{ + imports = [ + "${depot.third_party.impermanence}/nixos.nix" + ]; + + environment.persistence."/persist" = { + directories = [ + "/etc/NetworkManager/system-connections" + "/etc/mullvad-vpn" + "/var/cache/mullvad-vpn" + "/var/lib/bluetooth" + "/var/lib/systemd/coredump" + "/var/lib/tailscale" + "/var/log" + ]; + + files = [ + "/etc/machine-id" + ]; + }; +} -- cgit 1.4.1