Ensure that Nix is installed.
nix run github:nirlep5252/epicvim
- Add the input to your
flake.nix
{
inputs = {
epicvim.url = "github:nirlep5252/epicvim";
};
}
- Add the package to your packages list
# home-manager
home.packages = [
inputs.epicvim.packages."${pkgs.system}".default
];
# nixos-config
environment.systemPackages = [
inputs.epicvim.packages."${pkgs.system}".default
];
- Update the input in your
flake.nix
nix flake update epicvim
- Rebuild your config
# if you are using home-manager
home-manager switch --flake <path-to-your-flake>
# if you are using nixos-config
nixos-rebuild switch --flake <path-to-your-flake>