summaryrefslogtreecommitdiff
path: root/configurations/default.nix
blob: e0741dcb7a8c58ebc07d010259fd92dcc57eddb9 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
  inputs,
  lib,
}:
with lib; {
  # TODO Make a generic wrapper for all hosts.
  melian = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./melian]
        ++ (with inputs;
          (with nixos-hardware.nixosModules; [
            common-pc-laptop-ssd
            lenovo-thinkpad-t480
          ])
          ++ [nixpkgs.nixosModules.notDetected]);

      specialArgs = rec {
        inherit inputs lib;
        this = my.configurations.melian;
      };
    };

  manwe = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./manwe]
        ++ (with inputs;
          (with nixos-hardware.nixosModules; [common-cpu-amd common-pc-ssd])
          ++ [
            nixpkgs.nixosModules.notDetected
            "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
          ]);

      specialArgs = rec {
        inherit inputs lib;
        this = my.configurations.manwe;
      };
    };

  varda = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./varda]
        ++ (with inputs;
          (with nixos-hardware.nixosModules; [common-cpu-amd common-pc-ssd])
          ++ [
            nixpkgs.nixosModules.notDetected
            "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
          ]);

      specialArgs = rec {
        inherit inputs lib;
        this = my.configurations.varda;
      };
    };

  yavanna = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./yavanna]
        ++ (with inputs;
          (with nixos-hardware.nixosModules; [common-cpu-intel common-pc-hdd])
          ++ [nixpkgs.nixosModules.notDetected]);

      specialArgs = rec {
        inherit inputs lib;
        this = my.configurations.yavanna;
      };
    };

  test-headless = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./test-headless]
        ++ (with inputs; [
          nixpkgs.nixosModules.notDetected
          "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
        ]);

      specialArgs = rec {
        inherit inputs lib;
        this = {
          hostname = "test-headless";
          isHeadless = true;
          isHeadful = false;
        };
      };
    };

  test-headful = let
    system = "x86_64-linux";
  in
    nixosSystem {
      inherit system;

      modules =
        attrValues inputs.self.nixosModules
        ++ [./test-headful]
        ++ (with inputs; [
          nixpkgs.nixosModules.notDetected
          "${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
        ]);

      specialArgs = rec {
        inherit inputs lib;
        this = {
          hostname = "test-headful";
          isHeadful = true;
          isHeadless = false;
        };
      };
    };
}