summaryrefslogtreecommitdiff
path: root/flake.nix
blob: d1238801487571f8ae528b151a2c9bd7fd825ec0 (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
{
  inputs = {
    agenix = {
      url = "github:ryantm/agenix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    home-manager = {
      url = "github:nix-community/home-manager";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    impermanence.url = "github:nix-community/impermanence";
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    noshell = {
      url = "github:viperML/noshell";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    nur = {
      url = "github:nix-community/NUR";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    nvf = {
      url = "github:notashelf/nvf";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    phoenix = {
      url = "github:celenityy/Phoenix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    stylix = {
      url = "github:nix-community/stylix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };
  outputs = {
    agenix,
    home-manager,
    impermanence,
    nixpkgs,
    noshell,
    nur,
    nvf,
    phoenix,
    stylix,
    ...
  }: let
    machines = import ./machines.nix;
    configuration = machine: modules:
      nixpkgs.lib.nixosSystem {
        system = machine.system;
        specialArgs = {inherit machine;};
        modules =
          modules
          ++ [
            ./machines/${machine.hostname}/configuration.nix
            ./users.nix
            ./secrets.nix
            impermanence.nixosModules.impermanence
            agenix.nixosModules.default
            phoenix.nixosModules.default
          ];
      };
    configurationWithHomeManager = machine: (configuration machine
      [
        home-manager.nixosModules.home-manager
        {
          nixpkgs.overlays = [
            agenix.overlays.default
            nur.overlays.default
          ];
          home-manager.useGlobalPkgs = true;
          home-manager.extraSpecialArgs = {inherit machine;};
          home-manager.users =
            builtins.mapAttrs
            (name: value: value)
            (
              nixpkgs.legacyPackages.${machine.system}.lib.genAttrs
              machine.users
              (
                name: {
                  imports = [
                    agenix.homeManagerModules.default
                    stylix.homeModules.stylix
                    nvf.homeManagerModules.default
                    ./users/${name}/home.nix
                  ];
                }
              )
            );
        }
        noshell.nixosModules.default
      ]);
  in {
    nixosConfigurations =
      builtins.mapAttrs
      (hostname: value: configurationWithHomeManager value)
      machines;
  };
}