summaryrefslogtreecommitdiff
path: root/home/default.nix
blob: ae3f0099f0306fe6a1ba7a76213febba73ac6488 (plain) (blame)
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
{
  inputs,
  outputs,
  self,
  kansaiPkgs,
  secrets,
  ...
}:
{
  flake.homeConfigurations =
    let
      username = "ebisu";

      hosts = [
        "akashi"
        "kansai"
      ];
    in
    builtins.listToAttrs (
      map (host: {
        name = "${username}@${host}";

        value =
          (import ./${username} {
            inherit
              kansaiPkgs
              inputs
              outputs
              self
              secrets
              ;
          })
            host;
      }) hosts
    );
}