From eb45ae25a10daa0f2fb23c8a8cfb33a93120edf5 Mon Sep 17 00:00:00 2001 From: NullBite Date: Tue, 26 Mar 2024 19:30:21 -0400 Subject: [PATCH] start of hm standalone config that does nothing i want to work on it on my laptop so here's yet another useless commit --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index c2b08aa..0a2728d 100644 --- a/flake.nix +++ b/flake.nix @@ -219,6 +219,10 @@ inherit mkExtraPkgs; }; + mkHome = let + in { + }; + in { # for repl debugging via :lf . inherit inputs vars; @@ -267,5 +271,12 @@ hostname = "nixos-wsl"; }; }; # end nixosConfigurations + + homeManagerConfigurations = { + "nullbite@rpi4" = mkHome { + system = "aarch64-linux"; + stateVersion = "23.11"; + }; + }; }; # end outputs } # end flake