diff --git a/lib/mkmachine.nix b/lib/mkmachine.nix index 5d55d29..c14fb9d 100644 --- a/lib/mkmachine.nix +++ b/lib/mkmachine.nix @@ -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; diff --git a/lon.lock b/lon.lock index 0b7e5be..4030dca 100644 --- a/lon.lock +++ b/lon.lock @@ -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", diff --git a/machines/lambda/arkheon.nix b/machines/lambda/arkheon.nix deleted file mode 100644 index 0ba1963..0000000 --- a/machines/lambda/arkheon.nix +++ /dev/null @@ -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; - - }; -} diff --git a/machines/lambda/default.nix b/machines/lambda/default.nix index 8c872bc..462e2de 100644 --- a/machines/lambda/default.nix +++ b/machines/lambda/default.nix @@ -9,7 +9,6 @@ imports = [ ./hardware.nix ./home-julien.nix - ./arkheon.nix ./uptime-kuma.nix ]; diff --git a/profiles/server.nix b/profiles/server.nix index 2ede457..0ed659e 100644 --- a/profiles/server.nix +++ b/profiles/server.nix @@ -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;