[NixOS] Add neovim for micah

This commit is contained in:
2023-12-21 16:01:34 -07:00
parent 6f1242b02c
commit a98b45590a
5 changed files with 13 additions and 5 deletions

7
nixos/user-specific.nix Normal file
View File

@@ -0,0 +1,7 @@
{
home-manager.users.micah = {pkgs, ...}: {
home.packages = [
pkgs.neovim
];
};
}