summary refs log tree commit diff stats
path: root/flake.nix
blob: dff9c8933b88c6a7f9b0d7cd6663bc8d04a24922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  inputs = {
    nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
    nixpkgs-unstable.url = github:NixOS/nixpkgs;
    nixos-hardware.url = github:NixOS/nixos-hardware;
  };

  outputs = { self, nixpkgs, nixpkgs-unstable, nixos-hardware }: {
    nixosConfigurations.prefect = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [ ./system/prefect.nix ];
    };
  };
}