Skip to content

Commit

Permalink
flake: fix overlay not actually being applied (#3208)
Browse files Browse the repository at this point in the history
  • Loading branch information
spitulax authored May 6, 2024
1 parent 231d697 commit c4e0c56
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c4e0c56

Please sign in to comment.