Skip to content

Neovim configured to my linking using nix flakes

License

Notifications You must be signed in to change notification settings

Quoteme/neovim-luca

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Luca's super simple neovim flake configuration

Based on Quoteme/neovim-flake.

Installation

Run over the internet

nix run github:quoteme/neovim-flake /some/file

Run from a folder (for hacking )

Clone the repo and run nix run /some/file inside the new folder.

Install system-wide

Open /etc/nixos/flake.nix and add the following:

inputs = {
    # ...blabla...
    neovim-flake.url = "github:Quoteme/neovim-flake";
}

outputs = {self, nixpkgs, ...}@attr: {
    nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        specialArgs = attrs;
        modules = [
            ({ config, nixpkgs, ...}@inputs:
                # ...blabla...
                environment.systemPackages = with pkgs; [
                    # ...blabla...
                    inputs.neovim-flake.defaultPackage.x86_64-linux
                ];
            )
        ];
    }
}

Note that ...blabla... is a placeholder for any other configuration you might have set inside your flake.nix!

About

Neovim configured to my linking using nix flakes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published