Standalone Nixvim flake based on Lazyvim with some more changes.
Screenshots Circa: 2024-4-9
If you'd like to give it a try before installing: nix run github:spector700/Akari
1: Go to the flake.nix and add Akari.url = "github:spector700/Akari"
to your inputs.
# flake
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
Akari.url = "github:spector700/Akari";
};
}
2: Run nix flake update
3: Install it by adding inputs.Akari.packages.${system}.default
to your environment.systemPackages or home.packages. If you're using home-manager.
# packages
{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
inputs.Akari.packages.${system}.default
];
}
4: Rebuild your system.
To start configuring, add or modify the nix files in ./config
.
If you add a new configuration file, remember to add it to the
config/default.nix
file
To test your configuration simply run the following command
nix run .
Some sick ass Nixvim setups that I use from.