nix flake check fixes
Some checks failed
Build all NixOS Configurations / nix build (push) Has been cancelled

This commit is contained in:
Ingolf Wagner 2024-07-20 22:54:24 +02:00
parent 88e0238d56
commit 201b3eb1a8
Signed by: palo
GPG key ID: 76BF5F1928B9618B
3 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@ jobs:
- run: nix flake archive
- run: nix flake check
- run: nix flake check --verbose --log-format raw
- name: teardown ssh
if: always()

View file

@ -131,7 +131,7 @@ with lib;
${pkgs.less}/bin/less
'')
] ++ (map pandocScript (lib.cartesianProductOfSets {
] ++ (map pandocScript (lib.cartesianProduct{
inputFormat = [ "man" "markdown" "mediawiki" "asciidoc" ];
outputFormat = [ "mediawiki" "docbook5" "html5" "man" "jira" "markdown" ];
}));

View file

@ -41,5 +41,6 @@
# set vim to the default editor
# -----------------------------
programs.vim.defaultEditor = true;
programs.vim.enable = true;
}