chore: use lib.modules.importApply
All checks were successful
Build packages / Build derivations (push) Successful in 3m43s
All checks were successful
Build packages / Build derivations (push) Successful in 3m43s
This commit is contained in:
parent
fcddab20b2
commit
a34d5751c3
3 changed files with 4 additions and 4 deletions
|
@ -38,8 +38,8 @@
|
||||||
|
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
reposilite = import ./modules/reposilite.nix;
|
reposilite = import ./modules/reposilite.nix;
|
||||||
asus-numpad = import ./modules/asus-numpad.nix self;
|
asus-numpad = lib.modules.importApply ./modules/asus-numpad.nix { inherit self; };
|
||||||
shlink = import ./modules/shlink.nix self;
|
shlink = lib.modules.importApply ./modules/shlink.nix { inherit self; };
|
||||||
};
|
};
|
||||||
|
|
||||||
formatter = forEachSystem (system: (pkgsFor system).nixfmt-rfc-style);
|
formatter = forEachSystem (system: (pkgsFor system).nixfmt-rfc-style);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
self:
|
{ self }:
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
self:
|
{ self }:
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue