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

                                                        
 



                                         

                    
                                                            

                                         

    
                                                          

                      
                                               

                     




                                                 
                
                                      

                                  
      
 


                                                                           
                
                                  

        

    
                         


                                                           
                                               
                                           

    
{
  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";
    };

    home-manager = {
      url = "github:sinanmohd/home-manager/sway-generators";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

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

    makeNixos = host: system: lib.nixosSystem {
      inherit system;
      modules = [
        {
          networking.hostName = host;
          nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
        }

        ./global
        ./os/${host}/configuration.nix
        sops-nix.nixosModules.sops
      ];
    };

    makeHome = useType: system: home-manager.lib.homeManagerConfiguration {
      pkgs = nixpkgs.legacyPackages.${system};
      modules = [
        ./global
        ./home/${useType}/home.nix
      ];
    };
  in
  {
    nixosConfigurations =
      lib.genAttrs [ "cez" "kay" "lia" "fscusat" "dspace" ]
      (host: makeNixos host "x86_64-linux");
    homeConfigurations =
      lib.genAttrs [ "common" "wayland" "cez" ]
      (host: makeHome host "x86_64-linux");
  };
}