add host: doc

This commit is contained in:
John Bowdre 2024-01-25 16:58:06 -06:00
parent 59125e12ac
commit 2965808631
2 changed files with 15 additions and 0 deletions

View file

@ -83,6 +83,11 @@
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@doc" = lib.homeManagerConfiguration {
modules = [ ./home/doc.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
};
};
}

10
home/doc.nix Normal file
View file

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