mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let myCbxScript = ''
|
|
# TODO fix this for wayland
|
|
#!/bin/sh
|
|
if [ "$#" -le "2" ]; then
|
|
if [ "$1" = "copy" -o "$1" = "cut" ]; then
|
|
#xclip -selection clipboard -t $(file -b --mime-type $2) -i $2;
|
|
xclip -selection clipboard -t image/png -i $2;
|
|
fi
|
|
fi
|
|
'';
|
|
in
|
|
{
|
|
imports = [ ../../pkgs/ranger.nix ];
|
|
|
|
home.packages = with pkgs; [
|
|
ranger
|
|
ripdrag
|
|
highlight
|
|
(pkgs.writeScriptBin "cbx" myCbxScript)
|
|
];
|
|
xdg.mimeApps.associations.added = {
|
|
"inode/directory" = "ranger.desktop";
|
|
};
|
|
home.file.".config/ranger/rc.conf".source = ./rc.conf;
|
|
home.file.".config/ranger/rifle.conf".source = ./rifle.conf;
|
|
home.file.".config/ranger/scope.sh" = {
|
|
source = ./scope.sh;
|
|
executable = true;
|
|
};
|
|
home.file.".config/ranger/commands.py" = {
|
|
source = ./commands.py;
|
|
executable = true;
|
|
};
|
|
home.file.".config/ranger/commands_full.py" = {
|
|
source = ./commands_full.py;
|
|
executable = true;
|
|
};
|
|
home.file.".config/ranger/colorschemes/hail.py" = {
|
|
source = ./colorschemes/hail.py;
|
|
executable = true;
|
|
};
|
|
}
|