home-manager: use attr for long function args

This commit is contained in:
Ching Pei Yang 2024-12-29 18:46:55 +01:00 committed by raf
commit fcbc49e2e5
2 changed files with 6 additions and 2 deletions

View file

@ -1,9 +1,13 @@
# Home Manager module
packages: lib: inputs: {
{
self,
lib,
}: {
config,
pkgs,
...
}: let
inherit (self) packages inputs;
inherit (lib) maintainers;
inherit (lib.modules) mkIf mkAliasOptionModule;
inherit (lib.lists) optional;