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

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