diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-05-16 17:25:32 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-05-16 17:25:32 -0400 |
| commit | ea2b4fd5424bb96710e1d78f62233155437a87c9 (patch) | |
| tree | 36b825a41f381826af3e44f91e0de5d182df5d6e /flake.nix | |
| parent | update nix daemon (diff) | |
| download | nixos-ea2b4fd5424bb96710e1d78f62233155437a87c9.tar.gz nixos-ea2b4fd5424bb96710e1d78f62233155437a87c9.tar.bz2 nixos-ea2b4fd5424bb96710e1d78f62233155437a87c9.zip | |
nvf neovim
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -32,6 +32,10 @@ url = "github:Skullheadx/dmenu"; inputs.nixpkgs.follows = "nixpkgs"; }; + nvf = { + url = "github:notashelf/nvf"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = @@ -44,15 +48,26 @@ my-dwm, my-st, my-dmenu, + nvf, }@inputs: + let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + customNeovim = nvf.lib.neovimConfiguration { + inherit pkgs; + modules = [ ./nvf/nvf.nix ]; + }; + in { nixosConfigurations.nepsis = nixpkgs.lib.nixosSystem { - specialArgs = { inherit inputs; }; + specialArgs = { inherit inputs customNeovim; }; modules = [ hjem.nixosModules.default ./configuration.nix ./overlays.nix ]; }; + + packages.${system}.my-neovim = customNeovim.neovim; }; } |
