nix-config/packages/vic.nix

10 lines
185 B
Nix
Raw Normal View History

2025-08-08 02:25:28 +01:00
{ inputs, pkgs }:
pkgs.writeShellApplication rec {
name = "vic";
runtimeInputs = with pkgs; [ neovim tmux ];
text = builtins.readFile "${inputs.rwxrob-dot}/scripts/${name}";
}