add deb01 configuration

This commit is contained in:
John Bowdre 2023-08-05 16:27:18 -05:00
parent 6ed0f8f76c
commit ccd04252be
2 changed files with 16 additions and 0 deletions

View file

@ -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;

11
home/deb01.nix Normal file
View file

@ -0,0 +1,11 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/cli/extras
];
# packages
home.packages = with pkgs; [
];
}