introducing new neovim config, updating flake, and disabling syncthing

This commit is contained in:
Christoph Hollizeck 2024-05-10 08:51:23 +02:00
parent e3937ec870
commit 6174314ea6
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
6 changed files with 194 additions and 67 deletions

View file

@ -19,7 +19,7 @@ in
environment = {
systemPackages = with pkgs; [
less
wyrdgard.neovim
nvim-pkg
];
variables = {
EDITOR = "nvim";

View file

@ -14,7 +14,7 @@ in
{
options.wyrdgard.nix = with types; {
enable = mkBoolOpt true "Whether or not to manage nix configuration.";
package = mkOpt package pkgs.nixUnstable "Which nix package to use.";
package = mkOpt package pkgs.nixVersions.git "Which nix package to use.";
};
config = mkIf cfg.enable {

View file

@ -1,9 +1,6 @@
{
options,
config,
pkgs,
lib,
inputs,
...
}:
with lib;