add libvirt

This commit is contained in:
DACHXY 2024-12-20 22:35:43 +08:00
parent 356ec43b26
commit 394f71cfb6
7 changed files with 48 additions and 31 deletions

View file

@ -1,14 +1,13 @@
{ inputs, pkgs, ... }:
{ pkgs, ... }:
{
programs = {
neovim = {
enable = true;
withNodeJs = true;
extraLuaPackages = ps: [ ps.magick ];
extraPackages = [ pkgs.imagemagick ];
};
programs = {
neovim = {
enable = true;
withNodeJs = true;
extraLuaPackages = ps: [ ps.magick ];
extraPackages = [ pkgs.imagemagick ];
};
bash.enable = true;
};
};
}