This commit is contained in:
LunarAkai 2025-03-14 21:15:05 +01:00
commit c7b296b96f
6 changed files with 36 additions and 19 deletions

15
hosts/common/default.nix Normal file
View file

@ -0,0 +1,15 @@
{
inputs,
outputs,
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {
inherit inputs outputs;
};
}