mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 07:03:56 +02:00
15 lines
274 B
Nix
15 lines
274 B
Nix
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2024 Matter Labs
|
|
{ lib
|
|
, pkgs
|
|
, system
|
|
, ...
|
|
}: lib.teepot.nixosGenerate {
|
|
inherit (lib) nixosSystem;
|
|
inherit system pkgs;
|
|
modules = [
|
|
./configuration.nix
|
|
./google.nix
|
|
];
|
|
formatModule = ./verity.nix;
|
|
}
|