chore: nrun handle github flakes
This commit is contained in:
parent
ac0c6207db
commit
3d7a3bb194
5 changed files with 16 additions and 19 deletions
|
@ -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
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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]"
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
imports = [
|
imports = [ ./overlays.nix ];
|
||||||
./nixpkgs.nix
|
|
||||||
./overlays.nix
|
nixpkgs.config = {
|
||||||
];
|
allowUnfree = true;
|
||||||
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
gc = {
|
gc = {
|
||||||
|
|
|
@ -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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -4,4 +4,6 @@
|
||||||
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
|
"github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.openssh.enable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue