You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
421 B
14 lines
421 B
{ |
|
inputs = { |
|
nixpkgs.url = "nixpkgs/nixos-22.05"; |
|
flake-utils.url = "github:numtide/flake-utils"; |
|
}; |
|
|
|
outputs = { self, nixpkgs, flake-utils }: |
|
flake-utils.lib.eachSystem [ flake-utils.lib.system.x86_64-linux ] (system: |
|
let site = import ./default.nix { pkgs = nixpkgs.legacyPackages.${system}; }; |
|
in { |
|
packages.default = site.site; |
|
hydraJobs.site = site.site; |
|
}); |
|
}
|
|
|