summaryrefslogtreecommitdiff
path: root/systems/default.nix
blob: c608e9c871b20aac31378b0232d845ec7f146602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  inputs,
  self,
  ...
}: {
  darwinConfigurations = {
    caroline = {
      system = "x86_64-darwin";
    };
  };

  nixosConfigurations = let
    stable = inputs.nixpkgs-stable.lib.nixosSystem;
  in {
    glados = {
      system = "x86_64-linux";
    };

    glados-wsl = {
      system = "x86_64-linux";
    };

    atlas = {
      builder = stable;
      system = "aarch64-linux";
    };
  };

  perSystem = {system, ...}: {
    apps = (inputs.nixinate.nixinate.${system} self).nixinate;
  };
}