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 = [ imports = [
./assertions.nix ./assertions.nix
]; ];
} }

View file

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