mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
92 lines
2.3 KiB
Nix
92 lines
2.3 KiB
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
options.swarselmodules.programs = lib.mkEnableOption "programs settings";
|
|
config = lib.mkIf config.swarselmodules.programs {
|
|
programs = {
|
|
bat = {
|
|
enable = true;
|
|
extraPackages = [
|
|
pkgs.bat-extras.batdiff
|
|
pkgs.bat-extras.batman
|
|
pkgs.bat-extras.batwatch
|
|
] ++ [
|
|
pkgs.stable.bat-extras.batgrep
|
|
];
|
|
# extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];
|
|
};
|
|
bottom.enable = true;
|
|
carapace.enable = true;
|
|
fzf = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
enableZshIntegration = false;
|
|
};
|
|
imv.enable = true;
|
|
jq.enable = true;
|
|
less.enable = true;
|
|
lesspipe.enable = true;
|
|
mpv.enable = true;
|
|
pandoc.enable = true;
|
|
rclone.enable = true;
|
|
ripgrep.enable = true;
|
|
sioyek.enable = true;
|
|
swayr.enable = true;
|
|
timidity.enable = true;
|
|
wlogout = {
|
|
enable = true;
|
|
layout = [
|
|
{
|
|
label = "lock";
|
|
action = "loginctl lock-session";
|
|
text = "Lock";
|
|
keybind = "l";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "hibernate";
|
|
action = "systemctl hibernate";
|
|
text = "Hibernate";
|
|
keybind = "h";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "logout";
|
|
action = "loginctl terminate-user $USER";
|
|
text = "Logout";
|
|
keybind = "u";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "shutdown";
|
|
action = "systemctl poweroff";
|
|
text = "Shutdown";
|
|
keybind = "p";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "suspend";
|
|
action = "systemctl suspend";
|
|
text = "Suspend";
|
|
keybind = "s";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "reboot";
|
|
action = "systemctl reboot";
|
|
text = "Reboot";
|
|
keybind = "r";
|
|
circular = true;
|
|
}
|
|
];
|
|
};
|
|
yt-dlp.enable = true;
|
|
zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
options = [
|
|
"--cmd cd"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|