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