Skip to content

Commit f9f2cf7

Browse files
authored
used lib.getExe instead of the hardcoded path
1 parent f8a84db commit f9f2cf7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@
103103
);
104104

105105
apps = forEachSystem (
106-
{ system, ... }: {
106+
{ pkgs, system }: {
107107
default = {
108108
type = "app";
109-
program = "${self.packages.${system}.default}/bin/noctalia";
109+
program = lib.getExe self.packages.${system}.default;
110110
};
111111
}
112112
);

0 commit comments

Comments
 (0)