From 3f331e4bfb8504d15b670a2571dc154db582aaed Mon Sep 17 00:00:00 2001 From: Hermes Date: Tue, 16 Jun 2026 19:03:59 -0400 Subject: [PATCH] fix: add home-manager input for uConsole CM5 gortium user config The remote branch added users/gortium/gortium.nix which uses home-manager module option, but home-manager wasn't imported. --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 4246e8b..d488f65 100644 --- a/flake.nix +++ b/flake.nix @@ -22,10 +22,15 @@ url = "github:gortium/nixos-raspberrypi/cm5-cross-v1"; inputs.nixpkgs.follows = "nixpkgs-uconsole"; }; + home-manager = { + url = "github:nix-community/home-manager/release-25.11"; + inputs.nixpkgs.follows = "nixpkgs-uconsole"; + }; }; outputs = { self, nixpkgs, agenix, lix , nixpkgs-uconsole, nixos-uconsole, nixos-raspberrypi + , home-manager , ... }@inputs: let system = "x86_64-linux"; @@ -117,6 +122,7 @@ }; in { nix.package = lixCross.lix; }) agenix.nixosModules.default + home-manager.nixosModules.home-manager ./hosts/uconsole-cm5/configuration.nix ./hosts/uconsole-cm5/hardware-configuration.nix ./modules/nixos/services/wireguard-client.nix