cv/flake.nix

67 lines
1.6 KiB
Nix
Raw Normal View History

2023-11-12 18:07:31 +01:00
{
description = "CV template";
inputs = {
2023-11-21 11:41:31 +01:00
nixpkgs.url = "nixpkgs";
2023-11-12 18:07:31 +01:00
systems.url = "github:nix-systems/x86_64-linux";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
2023-11-21 11:41:31 +01:00
ide = {
url = "github:ivandimitrov8080/flake-ide";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-12 18:07:31 +01:00
};
2023-11-21 11:41:31 +01:00
outputs = { self, nixpkgs, flake-utils, systems, ide }:
2023-12-19 15:33:47 +01:00
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pname = "cv";
version = "0.1.0";
src = ./.;
nvim = ide.nvim.${system}.standalone {
plugins = {
lsp.servers = {
tsserver.enable = true;
jsonls.enable = true;
tailwindcss.enable = true;
2023-11-21 11:41:31 +01:00
};
};
2023-12-19 15:33:47 +01:00
};
buildInputs = with pkgs; [
nvim
inotify-tools
];
nativeBuildInputs = with pkgs; [
bun
];
shellHook = ''
echo "$$" > ./pid
monitor() {
while true; do
inotifywait -e modify ${pname}.tsx > /dev/null 2>&1
make
pkill -HUP mupdf
done
}
monitor > /dev/null 2>&1 &
'';
in
{
devShells.default = pkgs.mkShell {
inherit pname buildInputs nativeBuildInputs shellHook;
};
packages.${system}.default = pkgs.buildNpmPackage rec {
inherit nativeBuildInputs pname version src;
npmDepsHash = "sha256-1fqP3HFhziup3U97t+Kx8JMAd+ZpJmz5WZATR1CaQZY=";
postInstall = ''
ls -alh
mkdir -p $out
rm -rf $out/lib
2023-11-13 12:33:50 +01:00
'';
2023-12-19 15:33:47 +01:00
};
};
2023-11-12 18:07:31 +01:00
}