Setup checker

This commit is contained in:
Tobias Ostner 2026-04-13 18:47:06 +02:00
parent 85b5c2bce6
commit 063d40937f
4 changed files with 206 additions and 10 deletions

View file

@ -3,14 +3,20 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
checker.url = "git+https://codeberg.org/oibot/checker.git";
};
outputs = { self, nixpkgs, sops-nix, ... }:
outputs = { self, nixpkgs, sops-nix, checker, ... }:
let
system = "x86_64-linux";
in {
nixosConfigurations.tobserver = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit checker;
};
modules = [
sops-nix.nixosModules.sops
./hardware-configuration.nix
@ -20,6 +26,7 @@
./modules/mempool.nix
./modules/nextcloud.nix
./modules/totap.nix
./modules/checker.nix
];
};
};