all repos — nixfiles @ 2dfb3476768af7444f94590a1ce6e5200d5cc663

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

create initial flake.nix

Alan Pearce
commit

2dfb3476768af7444f94590a1ce6e5200d5cc663

parent

982d319d60bf0790118d4ac3debedae0ec767750

1 file changed, 14 insertions(+), 0 deletions(-)

changed files
A flake.nix
@@ -0,0 +1,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 ]; + }; + }; +}