22 lines
570 B
Nix
22 lines
570 B
Nix
|
{
|
||
|
description = "nezia's nixos configuration";
|
||
|
|
||
|
outputs = {nixpkgs, ...} @ inputs: {
|
||
|
packages."x86_64-linux" = let
|
||
|
inherit (nixpkgs.legacyPackages."x86_64-linux") pkgs;
|
||
|
neovimConfigured = inputs.nvf.lib.neovimConfiguration {
|
||
|
inherit pkgs;
|
||
|
modules = [./configuration];
|
||
|
extraSpecialArgs = {inherit pkgs;};
|
||
|
};
|
||
|
in {
|
||
|
default = neovimConfigured.neovim;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # TODO: remove when 24.11 is out
|
||
|
nvf.url = "github:notashelf/nvf";
|
||
|
};
|
||
|
}
|