diff options
author | Vincent Ambo <mail@tazj.in> | 2022-06-14T13·02+0000 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-06-14T13·09+0000 |
commit | 3bc9128dfc0c7b7e5d14239b875eef41eb634670 (patch) | |
tree | e2491e4dbcad20fb2e0a83f4e10bd3ae1b531806 /users/tazjin | |
parent | dc56b365e63d8e162b504738f54e4bd91d1b067e (diff) |
refactor(3p): fetch impermanence via niv r/4238
Change-Id: Ic6bc463304643a7f983a5f7c182f95a7706ca35b Reviewed-on: https://cl.tvl.fyi/c/depot/+/5868 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/home/shared.nix | 2 | ||||
-rw-r--r-- | users/tazjin/nixos/modules/persistence.nix | 2 | ||||
-rw-r--r-- | users/tazjin/nixos/zamalek/default.nix | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/users/tazjin/home/shared.nix b/users/tazjin/home/shared.nix index 03c7ee10b796..2fd17cdc0b5f 100644 --- a/users/tazjin/home/shared.nix +++ b/users/tazjin/home/shared.nix @@ -4,7 +4,7 @@ { config, lib, ... }: # home-manager { - imports = [ "${depot.third_party.impermanence}/home-manager.nix" ]; + imports = [ (depot.third_party.sources.impermanence + "/home-manager.nix") ]; home.persistence."/persist/tazjin/home" = { allowOther = true; diff --git a/users/tazjin/nixos/modules/persistence.nix b/users/tazjin/nixos/modules/persistence.nix index c81958161fbf..5ed3683740b2 100644 --- a/users/tazjin/nixos/modules/persistence.nix +++ b/users/tazjin/nixos/modules/persistence.nix @@ -3,7 +3,7 @@ { imports = [ - "${depot.third_party.impermanence}/nixos.nix" + (depot.third_party.sources.impermanence + "/nixos.nix") ]; environment.persistence."/persist" = { diff --git a/users/tazjin/nixos/zamalek/default.nix b/users/tazjin/nixos/zamalek/default.nix index e29623e8157b..f832b0cdeca3 100644 --- a/users/tazjin/nixos/zamalek/default.nix +++ b/users/tazjin/nixos/zamalek/default.nix @@ -22,7 +22,6 @@ in (usermod "physical.nix") (usermod "zerotier.nix") - (depot.third_party.impermanence + "/nixos.nix") (pkgs.home-manager.src + "/nixos") ] ++ lib.optional (builtins.pathExists ./local-config.nix) ./local-config.nix; |