diff --git a/flake.nix b/flake.nix index 9e045eb..ddbf7cd 100644 --- a/flake.nix +++ b/flake.nix @@ -58,6 +58,11 @@ # Standalone home-manager configuration entrypoint # Available through 'home-manager --flake .#your-username@your-hostname' homeConfigurations = { + "john@deb01" = lib.homeManagerConfiguration { + modules = [ ./home/deb01.nix ]; + pkgs = pkgsFor.x86_64-linux; + extraSpecialArgs = { inherit inputs outputs; }; + }; "john@penguin-fw" = lib.homeManagerConfiguration { modules = [ ./home/penguin-fw.nix ]; pkgs = pkgsFor.x86_64-linux; diff --git a/home/deb01.nix b/home/deb01.nix new file mode 100644 index 0000000..0ad049d --- /dev/null +++ b/home/deb01.nix @@ -0,0 +1,11 @@ +{ inputs, outputs, lib, config, pkgs, ... }: { + imports = [ + ./global + ./features/cli/extras + ]; + + # packages + home.packages = with pkgs; [ + + ]; +}