{ description = "Dependencies to deploy a clan"; nixConfig = { extra-substituters = [ "https://cache.clan.lol" ]; extra-trusted-public-keys = [ "cache.clan.lol-1:j83TYLUVsrSXZvQdMoY+Ms81Xd/nO8GNuQQHqphzRSg=" ]; }; inputs = { # https://github.com/NixOS/nixpkgs/pull/243252 nixpkgs.url = "github:Mic92/nixpkgs/daemon"; flake-parts.url = "github:hercules-ci/flake-parts"; flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs"; treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.inputs.nixpkgs.follows = "nixpkgs"; disko.url = "github:nix-community/disko"; disko.inputs.nixpkgs.follows = "nixpkgs"; sops-nix.url = "github:Mic92/sops-nix"; sops-nix.inputs.nixpkgs.follows = "nixpkgs"; sops-nix.inputs.nixpkgs-stable.follows = ""; srvos.url = "github:numtide/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS srvos.inputs.nixpkgs.follows = "nixpkgs"; clan-core.url = "git+https://git.clan.lol/clan/clan-core"; clan-core.inputs.flake-parts.follows = "flake-parts"; clan-core.inputs.nixpkgs.follows = "nixpkgs"; clan-core.inputs.treefmt-nix.follows = "treefmt-nix"; }; outputs = inputs@{ flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } ({ lib, ... }: { systems = [ "x86_64-linux" "aarch64-linux" ]; imports = [ inputs.treefmt-nix.flakeModule inputs.clan-core.modules.flake-parts.writers ./flake-parts/action-checkout ./flake-parts/action-create-pr ./flake-parts/action-ensure-tea-login ./flake-parts/action-flake-update ./flake-parts/devShells ./flake-parts/job-flake-update ./targets/flake-module.nix ./modules/flake-module.nix ./pkgs/flake-module.nix ./pkgs/clan-merge/flake-module.nix ]; perSystem = { pkgs, inputs', ... }: { treefmt = { projectRootFile = "flake.nix"; programs.terraform.enable = true; programs.nixpkgs-fmt.enable = true; settings.formatter.nixpkgs-fmt.excludes = [ # generated files "node-env.nix" "node-packages.nix" "composition.nix" ]; }; }; }); }