summary refs log tree commit diff stats
path: root/flake/nixosConfigurations/default.nix
blob: e31513ea1f44e176e6167def7f61ba0580f29eb0 (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
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
{
  self,
  nixpkgs,
  home-manager,
  prismlauncher,
  lanzaboote,
  nixvim,
  impermanence,
  wl-togglescreens,
  sops-nix,
  flake-utils,
  agenix,
  ragenix,
} @ attrs: let
  defaultModules = [
    impermanence.nixosModules.impermanence
    lanzaboote.nixosModules.lanzaboote
    home-manager.nixosModules.home-manager
    sops-nix.nixosModules.sops
    agenix.nixosModules.default
    {
      home-manager = {
        useGlobalPkgs = true;
        useUserPackages = true;
        users.sils = import ../../users/sils;
        extraSpecialArgs = attrs;
      };
    }
  ];
  nixosConfig = {
    hostname,
    mainDisk,
    rootPart,
    bootPart,
    system ? "x86_64-linux",
  } @ conf:
    nixpkgs.lib.nixosSystem {
      inherit system;
      specialArgs = attrs // conf;
      modules =
        [
          (import ../../sys)
          (import ../../secrets)
          (import ./basesystem.nix)
          {home-manager.extraSpecialArgs = attrs // conf;}
        ]
        ++ defaultModules;
    };
in {
  #thinklappi = nixpkgs.lib.nixosSystem {
  #  system = "x86_64-linux";
  #  specialArgs = attrs;
  #  modules =
  #    [
  #      ../../hosts/thinklappi
  #    ]
  #    ++ defaultModules;
  #};
  thinklappi = nixosConfig {
    hostname = "thinklappi";
    rootPart = "/dev/disk/by-uuid/6700d662-29a9-4ea5-8ca6-85d42550b3ab";
    mainDisk = "/dev/disk/by-uuid/68da1329-f5ea-4f2c-a38e-faffaaaa6b5a";
    bootPart = "/dev/disk/by-uuid/4064-2D6C";
    system = "x86_64-linux";
  };
  thinklappi-bootstrap = nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    specialArgs = attrs;
    modules = [
      ../../hosts/thinklappi-bootstrap
      lanzaboote.nixosModules.lanzaboote
    ];
  };
}