From f4f039f2c285d4dbe0ff3c31767eb4ba45779546 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 8 Jul 2020 18:40:51 +0200 Subject: [PATCH] Don't link /etc/nixos anymore --- modules/zfs.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/zfs.nix b/modules/zfs.nix index 94d6d033..32c9c449 100644 --- a/modules/zfs.nix +++ b/modules/zfs.nix @@ -37,10 +37,6 @@ config.services.zfs.autoScrub.enable = config.custom.zfs.enable; config.services.zfs.trim.enable = config.custom.zfs.enable; - config.environment.etc = lib.mkIf config.custom.zfs.enable { - nixos = { source = "/data/etc/nixos/"; }; - }; - config.systemd.tmpfiles.rules = lib.mkIf config.custom.zfs.enable ( [ "d /home/charlotte 0700 charlotte users - -" ] ++ (map (location: "L ${location.path} - - - - /${location.type}${location.path}") config.custom.zfs.systemLinks)