summary refs log tree commit diff stats
path: root/flake/nixosConfigurations/default.nix
blob: 8e382c2a552015ea6ad78f9da975321a999fd806 (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
{
  self,
  nixpkgs,
  home-manager,
  prismlauncher,
  lanzaboote,
  nixvim,
  impermanence,
  wl-togglescreens,
  stylix,
  sops-nix,
  flake-utils,
  agenix,
  ragenix,
} @ attrs: let
  defaultModules = [
    impermanence.nixosModules.impermanence
    lanzaboote.nixosModules.lanzaboote
    home-manager.nixosModules.home-manager
    stylix.nixosModules.stylix
    sops-nix.nixosModules.sops
    agenix.nixosModules.default
    {
      home-manager = {
        useGlobalPkgs = true;
        useUserPackages = true;
        users.sils = import ../../hm;
        extraSpecialArgs = attrs;
      };
    }
  ];
  nixosConfig = system: file:
    nixpkgs.lib.nixosSystem {
      inherit system;
      specialArgs = attrs;
      modules =
        [
          (import ../../modules/nixos)
          (import ../../sys)
          (import ../../secrets)
          (import file)
          {home-manager.extraSpecialArgs = attrs;}
        ]
        ++ defaultModules;
    };
in {
  #thinklappi = nixpkgs.lib.nixosSystem {
  #  system = "x86_64-linux";
  #  specialArgs = attrs;
  #  modules =
  #    [
  #      ../../hosts/thinklappi
  #    ]
  #    ++ defaultModules;
  #};
  thinklappi = nixosConfig "x86_64-linux" ../../hosts/thinklappi.nix;
  thinklappi-bootstrap = nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    specialArgs = attrs;
    modules = [
      ../../hosts/thinklappi-bootstrap
      lanzaboote.nixosModules.lanzaboote
    ];
  };
}