chore(nix): Create a flake to be able to run nvim with this config anywhere

This commit is contained in:
kalmenn 2025-09-18 12:53:08 +02:00
parent 4db652b7d4
commit 555baefbbc
Signed by: kalmenn
GPG key ID: F500055C44BC3834
2 changed files with 42 additions and 0 deletions

27
flake.lock generated Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1758035966,
"narHash": "sha256-qqIJ3yxPiB0ZQTT9//nFGQYn8X/PBoJbofA7hRKZnmE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "8d4ddb19d03c65a36ad8d189d001dc32ffb0306b",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "My neovim configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
packages.x86_64-linux.default = pkgs.writeShellScriptBin "neovim-kalmenn" ''
${pkgs.neovim}/bin/nvim -u ${let fs = pkgs.lib.fileset; in fs.toSource { root = ./.; fileset = fs.gitTracked ./.; }}/init.lua
'';
};
}