summaryrefslogtreecommitdiff
path: root/nvim/flake.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-03-27 02:38:10 +0000
committerGitHub <noreply@github.com>2024-03-27 02:38:10 +0000
commitf3cc663bedca46d176041579fd062f89e25217b3 (patch)
treeb41644ca444b474d2815a55609d0f1b089d64c8e /nvim/flake.nix
parent85baf135eea17eeaae9da6a9d3268fa6de5f3b0d (diff)
update to nixvim config
Diffstat (limited to 'nvim/flake.nix')
-rw-r--r--nvim/flake.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nvim/flake.nix b/nvim/flake.nix
new file mode 100644
index 0000000..0138f8e
--- /dev/null
+++ b/nvim/flake.nix
@@ -0,0 +1,51 @@
+{
+ description = "nixvim configuration";
+
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+ nixvim.url = "github:nix-community/nixvim";
+ flake-parts.url = "github:hercules-ci/flake-parts";
+ };
+
+ outputs = {
+ nixvim,
+ flake-parts,
+ ...
+ } @ inputs:
+ flake-parts.lib.mkFlake {inherit inputs;} {
+ systems = [
+ "x86_64-linux"
+ "aarch64-linux"
+ "x86_64-darwin"
+ "aarch64-darwin"
+ ];
+
+ perSystem = {
+ pkgs,
+ system,
+ ...
+ }: let
+ nixvimLib = nixvim.lib.${system};
+ nixvim' = nixvim.legacyPackages.${system};
+ nixvimModule = {
+ inherit pkgs;
+ module = import ./config; # import the module directly
+ # You can use `extraSpecialArgs` to pass additional arguments to your module files
+ extraSpecialArgs = {
+ # inherit (inputs) foo;
+ };
+ };
+ nvim = nixvim'.makeNixvimWithModule nixvimModule;
+ in {
+ checks = {
+ # Run `nix flake check .` to verify that your config is not broken
+ default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule;
+ };
+
+ packages = {
+ # Lets you run `nix run .` to start nixvim
+ default = nvim;
+ };
+ };
+ };
+}