1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 20:01:08 +01:00

fix: overlay syntax

This commit is contained in:
Kierán Meinhardt
2020-09-10 13:07:07 +02:00
parent 5e768e932f
commit 237c733c1d

View File

@@ -95,7 +95,6 @@ in {
} }
{ {
nixpkgs = { nixpkgs = {
overlays = [ (import <niveum/overlays/toml.nix>) ];
config = { config = {
allowUnfree = true; allowUnfree = true;
packageOverrides = pkgs: { packageOverrides = pkgs: {
@@ -116,7 +115,7 @@ in {
(self: super: { (self: super: {
scripts = import <niveum/packages/scripts> { pkgs = super; lib = super.lib; }; scripts = import <niveum/packages/scripts> { pkgs = super; lib = super.lib; };
}) })
# (import <niveum/overlays/rust.nix>) (import <niveum/overlays/toml.nix>)
]; ];
}; };
} }