chore: ditch arkheon

This commit is contained in:
Julien Malka 2024-12-08 00:07:57 +01:00
parent e5937ee297
commit f3001378ad
Signed by: Luj
GPG key ID: 6FC74C847011FD83
5 changed files with 0 additions and 55 deletions

View file

@ -37,7 +37,6 @@ import "${nixpkgs}/nixos/lib/eval-config.nix" {
(import "${inputs.impermanence}/nixos.nix")
(import inputs.lanzaboote).nixosModules.lanzaboote
(import inputs.lila).nixosModules.hash-collection
(import "${inputs.arkheon}/module.nix")
(import "${inputs.stateless-uptime-kuma}/nixos/module.nix")
{
home-manager.useGlobalPkgs = true;

View file

@ -11,16 +11,6 @@
"url": "https://github.com/ryantm/agenix/archive/f6291c5935fdc4e0bef208cfc0dcab7e3f7a1c41.tar.gz",
"hash": "sha256-b+uqzj+Wa6xgMS9aNbX4I+sXeb5biPDi39VgvSFqFvU="
},
"arkheon": {
"type": "GitHub",
"fetchType": "tarball",
"owner": "raitobezarius",
"repo": "arkheon",
"branch": "main",
"revision": "113724a1a206905e68319676f73d095fcc043a42",
"url": "https://github.com/raitobezarius/arkheon/archive/113724a1a206905e68319676f73d095fcc043a42.tar.gz",
"hash": "sha256-+BkuEBvFcLRsIe3FoHojRvXeyOS+n3dxPOafBgR4CHo="
},
"buildbot-nix": {
"type": "GitHub",
"fetchType": "tarball",

View file

@ -1,32 +0,0 @@
{
config,
inputs,
pkgs,
...
}:
{
age.secrets."arkheon-env".file = ../../secrets/arkheon-env.age;
nixpkgs.overlays = [ (import "${inputs.arkheon}/overlay.nix") ];
services.arkheon = {
enable = true;
pythonEnv = pkgs.python3.withPackages (ps: [
ps.arkheon
ps.daphne
ps.psycopg2
]);
domain = "arkheon.luj.fr";
nginx = {
enableACME = true;
forceSSL = true;
};
envFile = config.age.secrets."arkheon-env".path;
};
}

View file

@ -9,7 +9,6 @@
imports = [
./hardware.nix
./home-julien.nix
./arkheon.nix
./uptime-kuma.nix
];

View file

@ -1,17 +1,6 @@
{ config, ... }:
{
deployment.tags = [ "server" ];
# Enable arkheon
age.secrets."arkheon-token".file = ../secrets/arkheon-token.age;
services.arkheon.record = {
enable = true;
tokenFile = config.age.secrets."arkheon-token".path;
url = "https://arkheon.luj.fr";
};
# Nice motd
programs.rust-motd = {
enable = true;