aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/lilith/flake-parts.nix
blob: a70c471c9e3262f1df1649769de79b363bc50ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  inputs,
  ...
}:

{
  flake.darwinConfigurations.lilith = inputs.nix-darwin.lib.darwinSystem {
    specialArgs = { inherit inputs; };
    system = "aarch64-darwin";
    modules = with inputs.self.modules.darwin; [
      lilith
      dns
      home-manager
    ];
  };
}