aboutsummaryrefslogblamecommitdiff
path: root/flake.nix
blob: 93df93cfbdbd5abed8d66f1e0c69eea668aae970 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                
 
            
                                                     
 
                    

                                                              
      
 

                                     


                                         




                                         
                        

                                                 
      
 
                                             
 



                                                       
 
                                             



                                                        
 

                            
                         
        
      
 
{
  description = "personal NixOS configurations";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";

    home-manager = {
      url = "github:nix-community/home-manager/release-23.11";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    darwin = {
      url = "github:lnl7/nix-darwin";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    treefmt-nix = {
      url = "github:numtide/treefmt-nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    pre-commit-hooks = {
      url = "github:cachix/pre-commit-hooks.nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    devshell.url = "github:numtide/devshell";

    # utils
    futils.url = "github:numtide/flake-utils";
    flake-parts.url = "github:hercules-ci/flake-parts";
  };

  # Output config, or config for NixOS system
  outputs = inputs:
    inputs.flake-parts.lib.mkFlake { inherit inputs; } {

      systems = [ "aarch64-darwin" "x86_64-linux" ];

      imports = [
        ./flake/devshell.nix
        ./flake/hosts.nix
      ];
    };
}