This commit is contained in:
polygon 2023-05-16 19:41:17 +02:00
parent a8858915a7
commit c32afc111c

View File

@ -21,14 +21,16 @@
default = self.packages.${system}.gpt4all-chat;
};
apps.${system}.gpt4all-chat-avx = {
type = "app";
program = "${self.packages.${system}.gpt4all-chat-avx}/bin/chat";
};
apps.${system} = {
gpt4all-chat-avx = {
type = "app";
program = "${self.packages.${system}.gpt4all-chat-avx}/bin/chat";
};
apps.${system}.default = {
type = "app";
program = "${self.packages.${system}.gpt4all-chat}/bin/chat";
default = {
type = "app";
program = "${self.packages.${system}.gpt4all-chat}/bin/chat";
};
};
};
}