Merge branch 'dev/server'

This commit is contained in:
LavaDesu 2025-05-19 19:45:44 +10:00
commit 5ea27ceb6b
Signed by: cilly
GPG key ID: 6500251E087653C9
22 changed files with 207 additions and 100 deletions

View file

@ -37,6 +37,7 @@ in {
./system/greetd.nix
./system/gui.nix
./system/home-manager.nix
./system/home-manager-stable.nix
./system/input.nix
./system/kernel.nix
./system/nix.nix

View file

@ -21,6 +21,5 @@
};
};
nix.registry.config.flake = inputs.self;
nix.registry.nixpkgs.flake = inputs.nixpkgs;
nix.registry.shells.flake = inputs.self;
}

View file

@ -0,0 +1,19 @@
{ config, inputs, modules, ... }: {
imports = [
inputs.home-manager-vicuna.nixosModules.home-manager
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs modules;
sysConfig = config;
};
sharedModules = [
{
imports = [ modules.options ];
config.me = config.me;
}
];
};
}

View file

@ -7,6 +7,7 @@
git
htop
jq
kitty.terminfo
libarchive
lf
msr-tools

View file

@ -11,9 +11,8 @@
withNodeJs = false;
plugins = with pkgs.vimPlugins; [
ctrlp-vim
fzf-vim
lualine-nvim
nerdtree
tokyonight-nvim
vim-fugitive
vim-nix
@ -21,14 +20,7 @@
vim-signify
vim-surround
nvim-cmp
nvim-lspconfig
cmp-nvim-lsp
cmp_luasnip
luasnip
(nvim-treesitter.withPlugins (p: with p; [
tree-sitter-comment
tree-sitter-json
tree-sitter-lua
tree-sitter-nix