This commit is contained in:
Leonardo Eugênio 2024-10-05 10:50:17 -03:00
parent a596e79a36
commit e7e2b1dc5d
4 changed files with 56 additions and 0 deletions

View file

@ -57,6 +57,22 @@
"type": "gitlab" "type": "gitlab"
} }
}, },
"catboy-spinner": {
"flake": false,
"locked": {
"lastModified": 1728083477,
"narHash": "sha256-5co2CQljxxzG/F1vTVC8NfPshBOprQCqFSu8BWLe9a0=",
"ref": "refs/heads/main",
"rev": "422bdfa89b3e93731679eeee805edef715fbf893",
"revCount": 1,
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/catboy-spinner"
},
"original": {
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/catboy-spinner"
}
},
"crane": { "crane": {
"inputs": { "inputs": {
"flake-compat": "flake-compat", "flake-compat": "flake-compat",
@ -501,6 +517,7 @@
"root": { "root": {
"inputs": { "inputs": {
"agenix": "agenix", "agenix": "agenix",
"catboy-spinner": "catboy-spinner",
"demoji": "demoji", "demoji": "demoji",
"dhist": "dhist", "dhist": "dhist",
"disko": "disko", "disko": "disko",
@ -513,6 +530,7 @@
"plymouth-themes": "plymouth-themes", "plymouth-themes": "plymouth-themes",
"ranger-icons": "ranger-icons", "ranger-icons": "ranger-icons",
"tlauncher": "tlauncher", "tlauncher": "tlauncher",
"tomater": "tomater",
"vpsadminos": "vpsadminos", "vpsadminos": "vpsadminos",
"warthunder-leak-counter": "warthunder-leak-counter", "warthunder-leak-counter": "warthunder-leak-counter",
"wl-crosshair": "wl-crosshair" "wl-crosshair": "wl-crosshair"
@ -688,6 +706,22 @@
"url": "https://git.lelgenio.xyz/lelgenio/tlauncher-nix" "url": "https://git.lelgenio.xyz/lelgenio/tlauncher-nix"
} }
}, },
"tomater": {
"flake": false,
"locked": {
"lastModified": 1728089744,
"narHash": "sha256-WOz/qUKyao7lM2qcwqqcJDw4jI8mUJL6kNUNm0sxPKk=",
"ref": "refs/heads/main",
"rev": "efff561c745514a7874e3f5de95307a74efc7df9",
"revCount": 1,
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/tomater"
},
"original": {
"type": "git",
"url": "https://git.lelgenio.com/lelgenio/tomater"
}
},
"utils": { "utils": {
"inputs": { "inputs": {
"systems": "systems_4" "systems": "systems_4"

View file

@ -62,6 +62,14 @@
url = "git+https://git.lelgenio.com/lelgenio/warthunder-leak-counter"; url = "git+https://git.lelgenio.com/lelgenio/warthunder-leak-counter";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
catboy-spinner = {
url = "git+https://git.lelgenio.com/lelgenio/catboy-spinner";
flake = false;
};
tomater = {
url = "git+https://git.lelgenio.com/lelgenio/tomater";
flake = false;
};
}; };
outputs = outputs =
inputs: inputs:

View file

@ -21,6 +21,7 @@
./warthunder-leak-counter.nix ./warthunder-leak-counter.nix
./invidious.nix ./invidious.nix
./davi.nix ./davi.nix
./goofs.nix
]; ];
networking.hostName = "phantom"; networking.hostName = "phantom";

13
hosts/phantom/goofs.nix Normal file
View file

@ -0,0 +1,13 @@
{ inputs, ... }:
{
services.nginx.virtualHosts."catboy-spinner.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.catboy-spinner;
};
services.nginx.virtualHosts."tomater.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.tomater;
};
}