diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..4cc6399 --- /dev/null +++ b/flake.nix @@ -0,0 +1,18 @@ +{ + description = "Advanced option module for Neovim to simplify package managment"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05"; + }; + + outputs = + { + self, + nixpkgs, + ... + }: + { + hmModules.neovim-vanilla-wrapped = import ./module.nix; + nixosModules.neovim-vanilla-wrapped = import ./module.nix; + }; +} |
