configuration
flake
hosts
lib
modules
pkgs
chromium-incognito
clerie-backup
clerie-keys
clerie-sops
clerie-system-remote-install
clerie-system-upgrade
clerie-update-nixfiles
factorio-launcher
feeds-dir
git-checkout-github-pr
git-diff-word
git-pp
git-show-link
default.nix
git-show-link.py
iot-data
nix-remove-result-links
nixfiles
overrides
print-afra
run-with-docker-group
ssh-gpg
update-from-hydra
uptimestatus
overlay.nix
pkgs.nix
profiles
users
.gitignore
README.md
flake.lock
flake.nix
14 lines
306 B
Nix
14 lines
306 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeTextFile {
|
|
name = "git-show-link";
|
|
executable = true;
|
|
destination = "/bin/git-show-link";
|
|
allowSubstitutes = true;
|
|
preferLocalBuild = false;
|
|
text = ''
|
|
#!${pkgs.python3.withPackages (ps: with ps; [])}/bin/python3
|
|
${builtins.readFile ./git-show-link.py}
|
|
'';
|
|
}
|