Use the self attribute directly

This commit is contained in:
SebastianStork 2024-05-06 20:29:04 +02:00
parent ec62701a29
commit 6626303217
4 changed files with 26 additions and 7 deletions

View file

@ -1,10 +1,17 @@
{inputs, ...}: {
{
self,
inputs,
...
}: {
imports = [inputs.home-manager.nixosModules.home-manager];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;};
extraSpecialArgs = {
inherit self;
inherit inputs;
};
};
home-manager.sharedModules = [