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

                                                        
 





                                         


                                            
                                              

                     
                                       

                                         

                                  
      





                                          

                                                       

    
{
  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 = [
        { networking.hostName = host; }
        ./nixos/${host}/configuration.nix

        sops-nix.nixosModules.sops
      ];
    };

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