1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 08:02:21 +03:00

fix: remove deprecated accessors in examples

This commit is contained in:
David Arnold 2021-07-20 19:09:49 -05:00 committed by Parthiv Seetharaman
parent 0c266bafdf
commit cd8a40c682
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{ self, ... }:
let
imp = self.inputs.digga.lib.importers;
lib = self.inputs.digga.lib;
in
{
imports = [ (imp.modules ./modules) ];
imports = [ (lib.importModules ./modules) ];
}

View File

@ -1,15 +1,15 @@
{ self, inputs, ... }:
let
imp = inputs.digga.lib.importers;
lib = inputs.digga.lib;
in
{
imports = [ (imp.modules ./modules) ];
imports = [ (lib.importModules ./modules) ];
externalModules = [ ];
importables = rec {
profiles = imp.rakeLeaves ./profiles;
profiles = lib.rakeLeaves ./profiles;
suites = with profiles; {
shell = with shell; [ direnv ];
};
};
users = imp.rakeLeaves ./users;
users = lib.rakeLeaves ./users;
}