flake.nix (view raw)
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 ]; }; }; } |