summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.lock24
-rw-r--r--flake.nix2
2 files changed, 21 insertions, 5 deletions
diff --git a/flake.lock b/flake.lock
index 29df196..f7ab863 100644
--- a/flake.lock
+++ b/flake.lock
@@ -101,6 +101,21 @@
"type": "github"
}
},
+ "flake-compat": {
+ "locked": {
+ "lastModified": 1696426674,
+ "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
+ "owner": "edolstra",
+ "repo": "flake-compat",
+ "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
+ "type": "github"
+ },
+ "original": {
+ "owner": "edolstra",
+ "repo": "flake-compat",
+ "type": "github"
+ }
+ },
"flake-utils": {
"inputs": {
"systems": "systems_2"
@@ -155,15 +170,16 @@
},
"mixrank": {
"inputs": {
+ "flake-compat": "flake-compat",
"nixpkgs_latest": "nixpkgs_latest",
"nixpkgs_old": "nixpkgs_old"
},
"locked": {
- "lastModified": 1726523967,
- "narHash": "sha256-OgwrAeYvbCMO6vzo9uk9BZ+sIU2shs10Rmgzh7rh184=",
+ "lastModified": 1726754920,
+ "narHash": "sha256-p7Rrk0BSYNBvkQ5fidkUvbM/TnA15g/7ldLa/r59NkI=",
"ref": "refs/heads/master",
- "rev": "f6f43f3b723851918085e8b62e10f618e1b138f8",
- "revCount": 65611,
+ "rev": "0b77b4f2cb1fd0ec3df9592b04c914d1a98b337b",
+ "revCount": 65737,
"type": "git",
"url": "ssh://[email protected]/mixrank/mixrank"
},
diff --git a/flake.nix b/flake.nix
index 4eef0de..9d5b801 100644
--- a/flake.nix
+++ b/flake.nix
@@ -43,7 +43,7 @@
outputs = { self, nixpkgs, ... } @ inputs :
let
inherit (builtins) readDir attrNames listToAttrs split head;
- modules = map (p: import ./modules/${p}) (attrNames (readDir ./modules));
+ modules = map (p: ./modules/${p}) (attrNames (readDir ./modules));
make-config-named = host: nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [