From 72be90b97da229176fa68e055a650f634f3b8144 Mon Sep 17 00:00:00 2001 From: jay Date: Wed, 9 Jul 2025 08:15:53 -0400 Subject: [PATCH] Fix missing impermanence module import. --- nodes/hosts/nixy/configuration.nix | 3 ++- nodes/hosts/nixy/impermanence.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nodes/hosts/nixy/configuration.nix b/nodes/hosts/nixy/configuration.nix index 84698a0..15f14d4 100644 --- a/nodes/hosts/nixy/configuration.nix +++ b/nodes/hosts/nixy/configuration.nix @@ -2,11 +2,12 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, inputs, ... }: { imports = [ # Include the results of the hardware scan. + inputs.impermanence.nixosModules.impermanence ./hardware-configuration.nix ./impermanence.nix ./programs/streamcontroller.nix diff --git a/nodes/hosts/nixy/impermanence.nix b/nodes/hosts/nixy/impermanence.nix index 6dedd07..ee90444 100644 --- a/nodes/hosts/nixy/impermanence.nix +++ b/nodes/hosts/nixy/impermanence.nix @@ -1,4 +1,4 @@ -{lib, ...}: { +{lib, inputs, ...}: { # Reset root subvolume on boot boot.initrd.postResumeCommands = lib.mkAfter '' mkdir /btrfs_tmp