summaryrefslogblamecommitdiff
path: root/flake.nix
blob: 4307a2623f7048fcb1947732171445c71e516a44 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 
                                                     
 







                                                        


                                            
                                              




                                         
      






                                                        

    
{
  description = "sinan's reproducible nixos systems";

  inputs = {
    nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable";
    sops-nix = {
      url = "github:Mic92/sops-nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { self, nixpkgs, sops-nix }: let
    lib = nixpkgs.lib;

    makeHost = host: system: lib.nixosSystem {
      inherit system;
      modules = [
        ./hosts/${host}/configuration.nix
        sops-nix.nixosModules.sops
      ];
    };

    makeX86 = hosts: lib.genAttrs hosts (
        host: makeHost host "x86_64-linux"
    );
  in
  {
    nixosConfigurations = makeX86 [ "cez" "kay" "mox" ];
  };
}