From da6efc7157ddcc3c4dc70ca311bb29fdd94fd0fc Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 25 Apr 2024 08:49:11 -0400 Subject: [PATCH] add minimal root home config --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index 3635bc0..e22c52a 100644 --- a/flake.nix +++ b/flake.nix @@ -319,6 +319,17 @@ }; # end nixosConfigurations homeConfigurations = { + # minimal root config for installing terminfo + "root@rpi4" = mkHome { + system = "aarch64-linux"; + stateVersion = "23.11"; + config.programs = { + bash.enable = true; + }; + nixpkgs = inputs.nixpkgs-unstable; + home-manager = inputs.home-manager-unstable; + }; + "nullbite@rpi4" = mkHome { system = "aarch64-linux"; stateVersion = "23.11";