feat: test user+plasma

This commit is contained in:
2026-07-25 17:18:03 -07:00
parent 5505bbc784
commit 68de58a80c
16 changed files with 3382 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
{
inputs,
...
}: {
imports = [
inputs.nixvim.homeModules.nixvim
];
programs.nixvim = {
enable = true;
defaultEditor = true;
#colorschemes.catppuccin.enable = true;
#colorschemes.tokyonight = {
# enable = true;
# settings = {
# style = "night";
# };
#};
colorschemes.monokai-pro = {
enable = true;
settings = {
filter = "classic"; # Options: classic, octagon, pro, machine
};
};
#colorschemes.nightfox = {
# enable = true;
# flavor = "carbonfox"; # Try "nordfox" or "duskfox" too!
#};
plugins.lualine.enable = true;
vimAlias = true;
opts = {
number = true;
relativenumber = true;
};
plugins.cmp = {
enable = true;
settings.sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
];
};
plugins.lsp = {
enable = true;
servers = {
#nil_ls.enable = true;
nil_ls = {
enable = true;
settings = {
nix.flake.autoArchive = true;
};
};
clangd.enable = true;
html.enable = true;
};
};
plugins.rustaceanvim.enable = true;
};
}