mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
fix[work]: fix aws,cdr commands, easier git switch in emacs
This commit is contained in:
parent
40e1adc402
commit
568350df9c
52 changed files with 4610 additions and 1364 deletions
|
|
@ -7,6 +7,7 @@
|
|||
pass-fuzzel
|
||||
cdw
|
||||
cdb
|
||||
cdr
|
||||
bak
|
||||
timer
|
||||
e
|
||||
|
|
@ -31,8 +32,6 @@
|
|||
sshrm
|
||||
endme
|
||||
git-replace
|
||||
|
||||
rustdesk-vbc
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,9 +47,20 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
# nixpkgs.overlays = lib.mkIf isNixos (lib.mkForce null);
|
||||
nixpkgs = lib.mkIf (!isNixos) {
|
||||
overlays = [ outputs.overlays.default ];
|
||||
overlays = [
|
||||
outputs.overlays.default
|
||||
(final: prev:
|
||||
let
|
||||
additions = final: _: import "${self}/pkgs/config" {
|
||||
inherit self config lib;
|
||||
pkgs = final;
|
||||
homeConfig = config;
|
||||
};
|
||||
in
|
||||
additions final prev
|
||||
)
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -620,6 +620,19 @@
|
|||
_children = [{ Resize._args = [ "Increase" ]; }];
|
||||
};
|
||||
}
|
||||
{
|
||||
bind = {
|
||||
_args = [ "Alt r" ];
|
||||
_children = [
|
||||
{
|
||||
WriteChars._args = [ "source cdr" ];
|
||||
}
|
||||
{
|
||||
WriteChars._args = [ "\n" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
{
|
||||
bind = {
|
||||
_args = [ "Alt f" ];
|
||||
|
|
|
|||
|
|
@ -35,7 +35,8 @@ in
|
|||
hotspot = "nmcli connection up local; nmcli device wifi hotspot;";
|
||||
youtube-dl = "yt-dlp";
|
||||
cat-orig = "cat";
|
||||
cdr = "cd \"$( (find $DOCUMENT_DIR_WORK $DOCUMENT_DIR_PRIV -maxdepth 1 && echo $FLAKE) | fzf )\"";
|
||||
# cdr = "cd \"$( (find $DOCUMENT_DIR_WORK $DOCUMENT_DIR_PRIV -maxdepth 1 && echo $FLAKE) | fzf )\"";
|
||||
cdr = "source cdr";
|
||||
nix-ldd-ldd = "LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH ldd";
|
||||
nix-ldd = "LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH ldd";
|
||||
nix-ldd-locate = "nix-locate --minimal --top-level -w ";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue