Merge branch 'dev/server'
This commit is contained in:
commit
5ea27ceb6b
22 changed files with 207 additions and 100 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -21,6 +21,5 @@
|
|||
};
|
||||
};
|
||||
nix.registry.config.flake = inputs.self;
|
||||
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
nix.registry.shells.flake = inputs.self;
|
||||
}
|
||||
|
|
|
|||
19
modules/system/home-manager-stable.nix
Normal file
19
modules/system/home-manager-stable.nix
Normal 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;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -7,6 +7,7 @@
|
|||
git
|
||||
htop
|
||||
jq
|
||||
kitty.terminfo
|
||||
libarchive
|
||||
lf
|
||||
msr-tools
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue