all repos — nixfiles @ ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee

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

Update to NixOS unstable

Alan Pearce
commit

ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee

parent

9451fdc13c2af6b0ff74a045127d8f0d0caf06ba

1 file changed, 4 insertions(+), 3 deletions(-)

changed files
M flake.nixflake.nix
@@ -1,12 +1,13 @@
{ inputs = { - nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05; + 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, nixpkgs, ... }@attrs: { - nixosConfigurations.prefect = nixpkgs.lib.nixosSystem { + outputs = { self, nixos-unstable, ... }@attrs: { + nixosConfigurations.prefect = nixos-unstable.lib.nixosSystem { system = "x86_64-linux"; specialArgs = attrs; modules = [ ./system/prefect.nix ];