From b963380a0a16970ebabb4fb661a6d646ab4c86ed Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Thu, 27 Feb 2025 20:28:52 +0100 Subject: [PATCH] luna config complete --- machines/luna/modules.nix | 1 + modules/apps/terminal/neovim.nix | 8 -------- modules/base/default.nix | 1 + 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/machines/luna/modules.nix b/machines/luna/modules.nix index 987f6c6..9a54e7a 100644 --- a/machines/luna/modules.nix +++ b/machines/luna/modules.nix @@ -15,6 +15,7 @@ base = { nix.enable = true; + locale.enable = true; }; boot = { diff --git a/modules/apps/terminal/neovim.nix b/modules/apps/terminal/neovim.nix index 97e5fb7..b6726bc 100644 --- a/modules/apps/terminal/neovim.nix +++ b/modules/apps/terminal/neovim.nix @@ -47,9 +47,6 @@ nvim-lspconfig nvim-notify nvim-spectre - nvim-treesitter - nvim-treesitter-context - nvim-treesitter-textobjects nvim-ts-autotag nvim-ts-context-commentstring nvim-web-devicons @@ -62,7 +59,6 @@ trouble-nvim vim-illuminate vim-startuptime - which-key-nvim { name = "LuaSnip"; path = luasnip; @@ -124,10 +120,6 @@ -- disable mason.nvim, use programs.neovim.extraPackages { "williamboman/mason-lspconfig.nvim", enabled = false }, { "williamboman/mason.nvim", enabled = false }, - -- import/override with your plugins - { import = "plugins" }, - -- treesitter handled by xdg.configFile."nvim/parser", put this line at the end of spec to clear ensure_installed - { "nvim-treesitter/nvim-treesitter", opts = { ensure_installed = {} } }, }, }) ''; diff --git a/modules/base/default.nix b/modules/base/default.nix index fd36964..7d6b407 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -1,5 +1,6 @@ {inputs, ...}: { imports = [ ./nix.nix + ./locale.nix ]; }