Updated lib dependency
This commit is contained in:
parent
fcaafb347e
commit
af8cc75a7f
16
flake.lock
16
flake.lock
|
@ -15,24 +15,24 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"fudo-helpers": {
|
||||
"fudo-lib": {
|
||||
"locked": {
|
||||
"narHash": "sha256-8MjlZPjPVY1776qollku7+AHsVue/lNVtGPi8ZanO2w=",
|
||||
"path": "/state/fudo-helpers",
|
||||
"narHash": "sha256-QpgNnGkugm1AS2XH/6preCcLSc+sReiMns56jcyB+5w=",
|
||||
"path": "/state/fudo-lib",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/state/fudo-helpers",
|
||||
"path": "/state/fudo-lib",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1637590722,
|
||||
"narHash": "sha256-qijxxjkTJzh5C5zisPPA3xRQa8K//h8svYT9TIiOQX0=",
|
||||
"lastModified": 1637594604,
|
||||
"narHash": "sha256-CV8jMOEGgMpae8lM+V+FemYVImCYTDEO9YtprdmbWeg=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "2de4d2ce892111cf4178329492d35d034485985c",
|
||||
"rev": "0778565a0d1f6f4322261615f74b47a3e7088de0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -43,7 +43,7 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"flake-utils": "flake-utils",
|
||||
"fudo-helpers": "fudo-helpers",
|
||||
"fudo-lib": "fudo-lib",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,19 +2,20 @@
|
|||
description = "Fudo Entities";
|
||||
|
||||
inputs = {
|
||||
fudo-helpers.url = "path:/state/fudo-helpers";
|
||||
fudo-lib.url = "path:/state/fudo-lib";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, fudo-helpers, flake-utils, ... }: {
|
||||
outputs = { self, nixpkgs, fudo-lib, flake-utils, ... }: {
|
||||
nixosModule = {
|
||||
imports = [
|
||||
fudo-lib.nixosModule
|
||||
./module.nix
|
||||
];
|
||||
};
|
||||
|
||||
entities = let
|
||||
fudo-lib = fudo-helpers.lib { pkgs = nixpkgs; };
|
||||
fudo-lib = fudo-lib.lib { pkgs = nixpkgs; };
|
||||
in import ./entities.nix { inherit fudo-lib; };
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue