Move to using git.fudo.org directly

This commit is contained in:
niten 2021-11-30 10:52:00 -08:00
parent 9bc143805b
commit 55d8ca47fe
2 changed files with 33 additions and 21 deletions

46
flake.lock generated
View File

@ -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": {

View File

@ -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";
};