remove nur from hosts/ arguments

why was that even there in the first place
This commit is contained in:
jacekpoz 2024-02-20 23:08:30 +01:00
parent 775c268b1f
commit 3d83a21fc0
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C

View file

@ -4,12 +4,11 @@
outputs = {
self,
nixpkgs,
nur,
...
} @ inputs: let
inherit (nixpkgs) lib;
in {
nixosConfigurations = import ./hosts {inherit nixpkgs inputs lib nur;};
nixosConfigurations = import ./hosts {inherit nixpkgs inputs lib;};
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";