about summary refs log blame commit diff
path: root/flake.nix
blob: 36af10c5cc0e2e3d213e5c85e8e29203228ddc7c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 
                                         

            
                                                        
                    
                                                       


                                         
 
                                                      

    
                                                          


                         

                                            
                                                 


        
{
  description = "My NixOS configuration";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    home-manager = {
      url = "github:nix-community/home-manager/master";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    nur.url = "github:nix-community/NUR";

    nix-index.url = "github:Mic92/nix-index-database";
  };

  outputs = inputs @ { self, nixpkgs, home-manager, ... }:
    let user = "baitinq";
    in
    {
      nixosConfigurations = import ./hosts {
        inherit (nixpkgs) lib;
        inherit inputs nixpkgs home-manager user;
      };
    };
}