mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
Use the self attribute directly
This commit is contained in:
parent
ec62701a29
commit
6626303217
4 changed files with 26 additions and 7 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue