summary refs log tree commit diff stats
path: root/flake/nixosConfigurations/default.nix
blob: 681466583a0797b79c8e45bc614659011706e2a5 (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
{
  self,
  nixpkgs,
  home-manager,
  shell_library,
  river_init_lesser,
  yambar_cpu,
  yambar_memory,
  #grades,
  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;
      };
    }
  ];
in {
  thinklappi = nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    specialArgs = attrs;
    modules =
      [
        ../../hosts/thinklappi
      ]
      ++ defaultModules;
  };
  thinklappi-bootstrap = nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    specialArgs = attrs;
    modules = [
      ../../hosts/thinklappi-bootstrap
      lanzaboote.nixosModules.lanzaboote
    ];
  };
}