mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: switch to new package-based neovim flake
This commit is contained in:
parent
eb83c0af49
commit
02a6f0b4f8
7 changed files with 8 additions and 19 deletions
|
@ -152,7 +152,6 @@
|
|||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
git
|
||||
curl
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
../../users/youwen/common
|
||||
../../users/youwen/common/neofetch
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
neovim-config.homeManagerModules.default
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -122,7 +122,6 @@
|
|||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
git
|
||||
curl
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
../../users/youwen/linux/laptop
|
||||
../../users/youwen/linux/packages/aarch-64
|
||||
./home-manager-extras
|
||||
neovim-config.homeManagerModules.default
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
];
|
||||
};
|
||||
|
|
|
@ -135,23 +135,9 @@
|
|||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
git
|
||||
curl
|
||||
librewolf
|
||||
gnumake
|
||||
gcc
|
||||
cachix
|
||||
gnupg
|
||||
openssh
|
||||
python3
|
||||
steam-run
|
||||
|
||||
# deps for neovim compilation
|
||||
lua51Packages.lua
|
||||
lua51Packages.luarocks
|
||||
tree-sitter
|
||||
];
|
||||
|
||||
environment.variables = {
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
../../users/youwen/linux/spicetify
|
||||
./home-manager-extras
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
neovim-config.homeManagerModules.default
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
{
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = [
|
||||
inputs.personal-neovim.packages.${system}.default
|
||||
];
|
||||
|
||||
security.sudo.enable = false;
|
||||
|
||||
security.doas = {
|
||||
|
|
Loading…
Reference in a new issue