blob: 412a0fae346a440594e3a8b0c920cbf58c15f35b (
plain) (
tree)
|
|
{ depot, pkgs, lib, ... }:
let
inherit (depot.users.flokli.nixos)
archeology;
systemFor = sys: (depot.ops.nixos.nixosFor sys).system;
in
{
archeologySystem = (depot.ops.nixos.nixosFor ({ ... }: {
imports = [
./archeology/configuration.nix
];
})).config.system.build.toplevel;
}
|