diff --git a/flake.lock b/flake.lock index c8a4037..16fa7c4 100644 --- a/flake.lock +++ b/flake.lock @@ -258,11 +258,11 @@ "rev": "45cb2ae34407530496a30c6121cad976bd186fc5", "revCount": 8, "type": "git", - "url": "https://git.fudo.org/nix/fudo-entities.git" + "url": "https://git.fudo.org/fudo-nix/entities.git" }, "original": { "type": "git", - "url": "https://git.fudo.org/nix/fudo-entities.git" + "url": "https://git.fudo.org/fudo-nix/entities.git" } }, "fudo-home": { @@ -275,13 +275,17 @@ ] }, "locked": { - "narHash": "sha256-NCvYqgBq3HCqBx+EO1grdiflR9tthm9bUIasB4XtI4U=", - "path": "/state/nixops/fudo-home", - "type": "path" + "lastModified": 1638231222, + "narHash": "sha256-lvtfWFzAeK9YpNnuL28GMIoPCCimCFDI/M6BGq3e2BE=", + "ref": "master", + "rev": "9e5ca132cf4a353e78bb89d56ab0c8ca44ccce5e", + "revCount": 50, + "type": "git", + "url": "https://git.fudo.org/fudo-nix/home.git" }, "original": { - "path": "/state/nixops/fudo-home", - "type": "path" + "type": "git", + "url": "https://git.fudo.org/fudo-nix/home.git" } }, "fudo-lib": { @@ -297,24 +301,32 @@ }, "fudo-lib_2": { "locked": { - "narHash": "sha256-O2CsIArXcPyiBtDbAiFNU2IvIBTqEljrwDJkGF0STbw=", - "path": "/state/fudo-lib", - "type": "path" + "lastModified": 1638256833, + "narHash": "sha256-oDSDwFQ8K5kUBn3+nRjVBdDc9GXv5LZAbk8kSSfNEKA=", + "ref": "master", + "rev": "8d8173b6bc865fce288aa2d7f4d25ac85adacb4f", + "revCount": 20, + "type": "git", + "url": "https://git.fudo.org/fudo-nix/lib.git" }, "original": { - "path": "/state/fudo-lib", - "type": "path" + "type": "git", + "url": "https://git.fudo.org/fudo-nix/lib.git" } }, "fudo-pkgs": { "locked": { - "narHash": "sha256-XwEs/VkqJp1mNwYUeBUqCPrW6GUEwAxbXMVOy7bF2P8=", - "path": "/state/nixops/fudo-pkgs", - "type": "path" + "lastModified": 1637050187, + "narHash": "sha256-E1Xz7MLL/ZZZcxVd/7VycBC0N/zFz+OjIHx2h0ki+Fo=", + "ref": "master", + "rev": "4dc41229084416562eb12d02c84020fb3800d96b", + "revCount": 17, + "type": "git", + "url": "https://git.fudo.org/fudo-nix/pkgs.git" }, "original": { - "path": "/state/nixops/fudo-pkgs", - "type": "path" + "type": "git", + "url": "https://git.fudo.org/fudo-nix/pkgs.git" } }, "fudo-secrets": { diff --git a/flake.nix b/flake.nix index 0f501bf..3febfe9 100644 --- a/flake.nix +++ b/flake.nix @@ -5,22 +5,22 @@ nixpkgs.url = "nixpkgs/nixos-21.05"; fudo-home = { - url = "path:/state/nixops/fudo-home"; + url = "git+https://git.fudo.org/fudo-nix/home.git"; inputs.nixpkgs.follows = "nixpkgs"; }; # This MUST be a clean git repo, because we use the timestamp. fudo-entities = { - url = "git+https://git.fudo.org/nix/fudo-entities.git"; + url = "git+https://git.fudo.org/fudo-nix/entities.git"; inputs.nixpkgs.follows = "nixpkgs"; }; fudo-lib = { - url = "path:/state/fudo-lib"; + url = "git+https://git.fudo.org/fudo-nix/lib.git"; inputs.nixpkgs.follows = "nixpkgs"; }; - fudo-pkgs.url = "path:/state/nixops/fudo-pkgs"; + fudo-pkgs.url = "git+https://git.fudo.org/fudo-nix/pkgs.git"; fudo-secrets.url = "path:/state/secrets"; };