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/tverskoy/default.nix | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) (limited to 'users/tazjin/nixos/tverskoy/default.nix') diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index c2a8367846c4..e674b27730b0 100644 --- a/users/tazjin/nixos/tverskoy/default.nix +++ b/users/tazjin/nixos/tverskoy/default.nix @@ -14,9 +14,10 @@ in lib.fix (self: { imports = [ (mod "open_eid.nix") - (usermod "physical.nix") (usermod "fonts.nix") - "${depot.third_party.impermanence}/nixos.nix" + (usermod "persistence.nix") + (usermod "physical.nix") + (usermod "zerotier.nix") "${pkgs.home-manager.src}/nixos" ] ++ lib.optional (builtins.pathExists ./local-config.nix) ./local-config.nix; @@ -109,23 +110,6 @@ lib.fix (self: { ]; }; - 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/lib/zerotier-one" - "/var/log" - ]; - - files = [ - "/etc/machine-id" - ]; - }; - # from https://github.com/NixOS/nixpkgs/issues/64965 environment.etc."ipsec.secrets".text = '' include ipsec.d/ipsec.nm-l2tp.secrets @@ -340,10 +324,5 @@ lib.fix (self: { services.tailscale.enable = true; - services.zerotierone.enable = true; - services.zerotierone.joinNetworks = [ - "35c192ce9bd4c8c7" - ]; - system.stateVersion = "20.09"; }) -- cgit 1.4.1