style: formatting

This commit is contained in:
NotAShelf 2023-04-02 20:12:02 +03:00
parent 8302c441a3
commit 87f53227ce
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
2 changed files with 8 additions and 9 deletions

View file

@ -6,5 +6,4 @@
imports = [
./assertions.nix
];
}

View file

@ -48,11 +48,11 @@ in {
};
assertions = mkMerge [
mkIf
(config.programs.neovim-flake.enable)
{
assertion = !config.programs.neovim.enable;
message = "You cannot use neovim-flake together with vanilla neovim.";
}
];
mkIf
(config.programs.neovim-flake.enable)
{
assertion = !config.programs.neovim.enable;
message = "You cannot use neovim-flake together with vanilla neovim.";
}
];
}