scripts: add wl-copy-file

This commit is contained in:
Leonardo Eugênio 2023-01-27 17:09:48 -03:00
parent 87dd29d11a
commit c081c63146
3 changed files with 27 additions and 1 deletions

View file

@ -34,6 +34,7 @@ in {
"kakoune" = "kak";
}.${editor};
ns = "nix develop --command $SHELL";
wcf = "wl-copy-file";
# system
sv = "sudo systemct";
suv = "sudo systemct --user";
@ -75,6 +76,9 @@ in {
};
# programs.command-not-found.enable = true;
programs.nix-index.enable = true;
home.packages = with pkgs; [ trash-cli ];
home.packages = with pkgs; [
trash-cli
wl-copy-file
];
};
}