From 94cd287a4fcee163b066153ab142843128c04ec7 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 3 Nov 2021 23:37:05 -0400 Subject: [PATCH] flake: add impermanence to flake inputs --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 50acc31..c55f7a1 100644 --- a/flake.nix +++ b/flake.nix @@ -40,6 +40,8 @@ nixos-hardware.url = "github:nixos/nixos-hardware"; + impermanence.url = "github:nix-community/impermanence"; + # start ANTI CORRUPTION LAYER # remove after https://github.com/NixOS/nix/pull/4641 nixpkgs.follows = "nixos"; @@ -177,6 +179,8 @@ home.nixosModules.home-manager agenix.nixosModules.age bud.nixosModules.bud + + inputs.impermanence.nixosModules.impermanence ]; }; @@ -217,7 +221,7 @@ home = { imports = [ (digga.lib.importExportableModules ./users/modules) ]; - modules = [ ]; + modules = [ "${inputs.impermanence}/home-manager.nix" ]; importables = rec { inherit inputs; profiles = digga.lib.rakeLeaves ./users/profiles;