Fix deprecations

This commit is contained in:
Jakob Lechner 2023-07-13 22:56:35 +00:00
parent 3cefc7f9dd
commit 27460d3682
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
5 changed files with 38 additions and 40 deletions

View file

@ -39,7 +39,7 @@
let
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlay ];
overlays = [ self.overlays.default ];
};
inherit (pkgs) lib;
in
@ -55,7 +55,7 @@
};
};
devShell = pkgs.mkShell {
devShells.default = pkgs.mkShell {
name = "fablab-nixos-config";
buildInputs = (with pkgs; [
@ -112,7 +112,7 @@
fablab;
});
}) // {
overlay = import ./pkgs;
overlays.default = import ./pkgs;
nixosConfigurations = nixpkgs.lib.mapAttrs
(hostname: { system