mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Fix errors
This commit is contained in:
parent
85c51ff9d0
commit
9b930ea0e0
5 changed files with 12 additions and 16 deletions
|
|
@ -12,11 +12,6 @@ in {
|
|||
options.mods.terminal.development.enable =
|
||||
lib.mkEnableOption "enables cli editor";
|
||||
|
||||
options.mods.obsidian.enable =
|
||||
lib.mkEnableOption "enables obsidian";
|
||||
|
||||
imports = [inputs.nvf.homeManagerModules.default];
|
||||
|
||||
config = lib.mkIf config.mods.terminal.development.enable {
|
||||
mods = {
|
||||
nvim.enable = true;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
vim = {
|
||||
viAlias = false;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
lsp = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
options.mods.obsidian.enable =
|
||||
lib.mkEnableOption "enables obsidian";
|
||||
|
||||
config = lib.mkIf config.obsidian.enable {
|
||||
config = lib.mkIf config.mods.obsidian.enable {
|
||||
programs.nvf.settings.vim.notes.obsidian = {
|
||||
enable = true;
|
||||
setupOpts = {
|
||||
|
|
@ -118,6 +118,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
todo-comments.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ in {
|
|||
options.mods.zellij.enable =
|
||||
lib.mkEnableOption "enables zellij";
|
||||
|
||||
imports = [inputs.nvf.homeManagerModules.default];
|
||||
|
||||
config = lib.mkIf config.mods.terminal.development.enable {
|
||||
programs.zellij = {
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue