summary refs log tree commit diff stats
path: root/flake.nix
blob: 1249f2a9d5091a7962bdebf99d2891dd1ba2ead1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  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, ... }@attrs: {
    nixosConfigurations.prefect = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      specialArgs = attrs;
      modules = [ ./system/prefect.nix ];
    };
  };
}