flake: fix overlay not actually being applied (#3208)

This commit is contained in:
Bintang
2024-05-06 15:46:10 +07:00
committed by GitHub
parent 231d6972d7
commit c4e0c569aa

View File

@ -16,7 +16,12 @@
"x86_64-linux"
"aarch64-linux"
]
(system: func (import nixpkgs { inherit system; }));
(system: func (import nixpkgs {
inherit system;
overlays = with self.overlays; [
waybar
];
}));
mkDate = longDate: (lib.concatStringsSep "-" [
(builtins.substring 0 4 longDate)