Added overlay for clifm.
This commit is contained in:
parent
47c5aee868
commit
464e53fe61
|
|
@ -76,7 +76,7 @@ in {
|
|||
upower
|
||||
glib # provides trash and mount (latter may supplant udisks2?)
|
||||
] ++ # Basic utilities
|
||||
[ bitwarden-cli htop snore hledger hledger-ui clifm ]
|
||||
[ bitwarden-cli htop snore hledger hledger-ui ]
|
||||
++ # Personalized selection of command-line (CLI/TUI) apps
|
||||
[ terminal ] ++ # Terminal emulator
|
||||
[
|
||||
|
|
|
|||
|
|
@ -1,7 +1,19 @@
|
|||
{pkgs, ...}: {
|
||||
|
||||
home.packages = with pkgs; [ clifm ];
|
||||
{pkgs, lib, ...}:
|
||||
let
|
||||
overlay = (final: prev: {
|
||||
clifm = prev.clifm.overrideAttrs (old: {
|
||||
version = "1.21.13";
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "leo-arch";
|
||||
repo = prev.clifm.pname;
|
||||
rev = "b7b727b";
|
||||
hash = "sha256-UEgCXAW/MlQy5FltciDAKCCRWK+McmpL1Cr3sNvwgUs=";
|
||||
};
|
||||
});
|
||||
});
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs.extend overlay; [ clifm ];
|
||||
xdg.configFile."clifm/profiles/default/clifmrc".source = ./clifm/clifmrc;
|
||||
xdg.configFile."clifm/profiles/default/mimelist.clifm".source = ./clifm/mimelist.clifm;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue