feat: make config portable

This commit is contained in:
Nydragon 2024-11-05 17:10:40 +01:00
parent 36051f36ca
commit fd14b228bc
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
5 changed files with 26 additions and 5 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake;

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.direnv

View file

@ -1,5 +1,5 @@
{ {
description = "A very basic flake"; description = "A portable Neovim flake";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
@ -12,6 +12,15 @@
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
in in
{ {
packages.x86_64-linux.default = pkgs.callPackage ./nix/package.nix { }; packages.${system}.default = pkgs.callPackage ./nix/package.nix { };
devShells.${system}.default = pkgs.mkShell {
packages = [ self.packages.${system}.default ];
EDITOR = "${self.packages.${system}.default}/bin/nvim";
shellHook = ''
export TMP_PROJECT_ROOT="$PWD"
'';
};
}; };
} }

View file

@ -58,6 +58,8 @@ vim.filetype.add({
}, },
}) })
vim.o.undofile = true
require("plugins") require("plugins")
vim.cmd([[ vim.cmd([[

View file

@ -1,4 +1,4 @@
{ pkgs, lib ... }: { pkgs, lib, ... }:
let let
deps = with pkgs; [ deps = with pkgs; [
lua lua
@ -45,8 +45,16 @@ pkgs.writeTextFile {
text = '' text = ''
#!${pkgs.bash}/bin/bash #!${pkgs.bash}/bin/bash
export PATH=${lib.makeBinPath deps}:$PATH export PATH=${lib.makeBinPath deps}:$PATH
export LUA_PATH=${../.}/lua/?.lua
${pkgs.neovim-unwrapped}/bin/nvim -u ${../.}/init.lua $@ if [ -z $${TMP_PROJECT_ROOT+x} ]; then
export LUA_PATH=${../.}/lua/?.lua;
export CONFIG_LOC=${../init.lua}
else
export LUA_PATH="$TMP_PROJECT_ROOT/lua/?.lua";
export CONFIG_LOC="$TMP_PROJECT_ROOT/init.lua"
fi
${pkgs.neovim-unwrapped}/bin/nvim -u $CONFIG_LOC $@
''; '';
checkPhase = '' checkPhase = ''
${pkgs.stdenv.shellDryRun} "$target" ${pkgs.stdenv.shellDryRun} "$target"