about summary refs log tree commit diff
path: root/users/flokli/nixos/default.nix
blob: 412a0fae346a440594e3a8b0c920cbf58c15f35b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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;
}