all repos — nixfiles @ 9451fdc13c2af6b0ff74a045127d8f0d0caf06ba

System and user configuration, managed by nix and home-manager

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 ];
    };
  };
}