nixvim on droid

This commit is contained in:
Michael Thomson 2025-01-26 18:31:08 +00:00
parent 1866479684
commit da1acd0538
3 changed files with 6 additions and 28 deletions

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, inputs, ... }:
{
# Simply install just the packages
@ -46,8 +46,10 @@
#time.timeZone = "Europe/Berlin";
home-manager = {
extraSpecialArgs = {inherit inputs;};
config = ./home.nix;
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
useUserPackages = true;
};
}

View File

@ -5,4 +5,7 @@
home.stateVersion = "24.05";
# insert home-manager config
imports = [
../../modules/home-manager/nixvim
];
}

View File

@ -370,33 +370,6 @@ lib,
picker = "minipick";
};
};
obsidian = {
enable = true;
settings = {
completion = {
min_chars = 1;
nvim_cmp = true;
};
notes_subir = "notes";
new_notes_location = "notes_subdir";
templates = {
folder = "templates";
};
workspaces = [
{
name = "personal";
path = "~/vaults/personal";
}
];
picker = {
name = "mini.pick";
};
daily_notes = {
folder = "dailies";
default_tags = [ "type/daily" ];
};
};
};
render-markdown = {
enable = true;
};