Add intake-sources
This commit is contained in:
parent
cd4cf9107c
commit
f134165737
29
flake.lock
29
flake.lock
|
@ -42,11 +42,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1687221640,
|
||||
"narHash": "sha256-JzREQQZPT+sEb7sHafJ4gXgyCImcZPhGBWhKwW0dgg0=",
|
||||
"lastModified": 1687296400,
|
||||
"narHash": "sha256-XY/piTamXRf3UxCmgZgLoUYWMFSV3W3dGEhr9VdSMEs=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "760781d6d95eb78b3ecf1256e4fa860848d5decb",
|
||||
"revCount": 60,
|
||||
"rev": "c5778513e2d19421d29291692f5a9d13a9dc1550",
|
||||
"revCount": 64,
|
||||
"type": "git",
|
||||
"url": "ssh://gitea@git.alogoulogoi.com/Jaculabilis/intake.git"
|
||||
},
|
||||
|
@ -55,6 +55,26 @@
|
|||
"url": "ssh://gitea@git.alogoulogoi.com/Jaculabilis/intake.git"
|
||||
}
|
||||
},
|
||||
"intake-sources": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs-next"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1687286801,
|
||||
"narHash": "sha256-QoazlG8YZGaOdswfyy9mlllYzhILPLPrnDD2UorN9Dg=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "a4883480ae278c874a9a16782bf233bf70b87243",
|
||||
"revCount": 14,
|
||||
"type": "git",
|
||||
"url": "ssh://gitea@git.alogoulogoi.com/Jaculabilis/intake-sources.git"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "ssh://gitea@git.alogoulogoi.com/Jaculabilis/intake-sources.git"
|
||||
}
|
||||
},
|
||||
"nixos-shell": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -136,6 +156,7 @@
|
|||
"inputs": {
|
||||
"flake-compat": "flake-compat",
|
||||
"intake": "intake",
|
||||
"intake-sources": "intake-sources",
|
||||
"nixos-wsl": "nixos-wsl",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"nixpkgs-next": "nixpkgs-next"
|
||||
|
|
|
@ -16,6 +16,10 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs-next";
|
||||
inputs.flake-compat.follows = "flake-compat";
|
||||
};
|
||||
intake-sources = {
|
||||
url = "git+ssh://gitea@git.alogoulogoi.com/Jaculabilis/intake-sources.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs-next";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
@ -25,6 +29,7 @@
|
|||
flake-compat,
|
||||
nixos-wsl,
|
||||
intake,
|
||||
intake-sources,
|
||||
}: {
|
||||
nixosConfigurations = {
|
||||
catacomb = nixpkgs.lib.nixosSystem {
|
||||
|
@ -34,7 +39,8 @@
|
|||
empyrean = nixpkgs-next.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
intake.nixosModules.intake
|
||||
intake.nixosModules.default
|
||||
intake-sources.nixosModules.default
|
||||
./machine/empyrean
|
||||
];
|
||||
};
|
||||
|
|
|
@ -146,6 +146,7 @@
|
|||
services.intake = {
|
||||
listen = { addr = "10.22.20.1"; port = 5234; };
|
||||
users.tvb.enable = true;
|
||||
users.tvb.packages = [ pkgs.intakeSources ];
|
||||
};
|
||||
|
||||
networking.firewall = {
|
||||
|
|
Loading…
Reference in New Issue