From ccd04252be05d89ef86872b9130e5424be7dc9c7 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 5 Aug 2023 16:27:18 -0500 Subject: [PATCH] add deb01 configuration --- flake.nix | 5 +++++ home/deb01.nix | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 home/deb01.nix 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; [ + + ]; +}