chore: nrun handle github flakes

This commit is contained in:
Nydragon 2024-08-21 04:49:07 +02:00
parent ac0c6207db
commit 3d7a3bb194
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
5 changed files with 16 additions and 19 deletions

View file

@ -60,4 +60,12 @@ in
genswitch = nixos-rebuild "genswitch" "switch"; genswitch = nixos-rebuild "genswitch" "switch";
fishl = pkgs.writers.writeFishBin "fishl" ./logo.fish; fishl = pkgs.writers.writeFishBin "fishl" ./logo.fish;
nrun = pkgs.writers.writeFishBin "nrun" ''
if echo $argv[1] | grep -Eq '^(github):.+/.+$'
nix run $argv[1] -- $argv[2..]
else
nix run nixpkgs#$argv[1] -- $argv[2..]
end
'';
} }

View file

@ -13,10 +13,8 @@
cp = "cp -i"; cp = "cp -i";
mv = "mv -i"; mv = "mv -i";
}; };
functions = rec { functions = {
gitignore = "curl -sL https://www.gitignore.io/api/$argv"; gitignore = "curl -sL https://www.gitignore.io/api/$argv";
nrun = "nix run nixpkgs#$argv[1] -- $argv[2..]";
nrunb = "${nrun} & disown";
mv-bad-creation-date = '' mv-bad-creation-date = ''
${lib.my.checkPath pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]" ${lib.my.checkPath pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
''; '';

View file

@ -1,10 +1,11 @@
{ ... }: { ... }:
{ {
imports = [ imports = [ ./overlays.nix ];
./nixpkgs.nix
./overlays.nix nixpkgs.config = {
]; allowUnfree = true;
};
nix = { nix = {
gc = { gc = {

View file

@ -1,12 +0,0 @@
{ inputs, lib, ... }:
{
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
custom = {
scripts = import ../../home/scripts { inherit pkgs lib; };
rofi-obsidian = inputs.rofi-obsidian.outputs.packages.${pkgs.system}.rofi-obsidian;
};
};
};
}

View file

@ -4,4 +4,6 @@
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl"; "github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
}; };
}; };
services.openssh.enable = true;
} }