From ff3475e656671bc536459fe075c573cf4c1384cd Mon Sep 17 00:00:00 2001 From: iofq Date: Fri, 12 May 2023 04:56:55 -0500 Subject: [PATCH] add CI --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fc458bd..68f3b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,10 @@ FROM nixos/nix COPY . . -RUN nix bundle --bundler github:ralismark/nix-appimage . +RUN nix bundle \ + --bundler github:ralismark/nix-appimage \ + --extra-experimental-features nix-command \ + --extra-experimental-features flakes \ + . ENTRYPOINT [ "nvim-x86_64.AppImage" ]