diff --git a/roles/common/programs/default.nix b/roles/common/programs/default.nix index e6d2127..7950344 100755 --- a/roles/common/programs/default.nix +++ b/roles/common/programs/default.nix @@ -13,6 +13,7 @@ ./starship.nix ./bat.nix ./btop.nix + ./neovim.nix ]; # Some programs dont have a programs.*.enable option, so I install their package here environment.systemPackages = with pkgs; [ diff --git a/roles/common/programs/neovim.nix b/roles/common/programs/neovim.nix new file mode 100644 index 0000000..ad2db07 --- /dev/null +++ b/roles/common/programs/neovim.nix @@ -0,0 +1,9 @@ +{ ... }: + +{ + home-manager.users.toast = { + programs.neovim = { + enable = true; + }; + }; +}