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

@ -2,9 +2,8 @@
dag = import ./dag.nix {inherit lib;}; dag = import ./dag.nix {inherit lib;};
booleans = import ./booleans.nix {inherit lib;}; booleans = import ./booleans.nix {inherit lib;};
types = import ./types {inherit lib;}; types = import ./types {inherit lib;};
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.";
} }
]; ];
} }