106 lines
2.2 KiB
Nix
106 lines
2.2 KiB
Nix
desktop: {pkgs, ...}: {
|
|
imports =
|
|
[
|
|
(import ../programs/zsh.nix desktop)
|
|
../programs/tmux.nix
|
|
../programs/taskwarrior.nix
|
|
(import ../programs/vim desktop)
|
|
]
|
|
++ (
|
|
if desktop
|
|
then [../programs/mail.nix]
|
|
else []
|
|
);
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
};
|
|
initExtraBeforeCompInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
|
initExtra = ''
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
test -n "$KITTY_INSTALLATION_DIR" || export KITTY_INSTALLATION_DIR=${pkgs.kitty}/lib/kitty
|
|
export KITTY_SHELL_INTEGRATION=enabled
|
|
autoload -Uz -- "$KITTY_INSTALLATION_DIR"/shell-integration/zsh/kitty-integration
|
|
kitty-integration
|
|
unfunction kitty-integration
|
|
'';
|
|
plugins = [
|
|
];
|
|
};
|
|
autojump.enable = true;
|
|
jq.enable = true;
|
|
ledger.enable = true;
|
|
};
|
|
home.file.".p10k.zsh".source = ./.p10k.zsh;
|
|
|
|
systemd.user.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
home = {
|
|
shellAliases =
|
|
{
|
|
hx = "nvim";
|
|
vi = "nvim";
|
|
vim = "nvim";
|
|
cat = "bat";
|
|
less = "bat";
|
|
}
|
|
// (
|
|
if desktop
|
|
then {
|
|
icat = "${pkgs.kitty}/bin/kitty +kitten icat";
|
|
d = "${pkgs.kitty}/bin/kitty +kitten diff";
|
|
hg = "${pkgs.kitty}/bin/kitty +kitten hyperlinked_grep";
|
|
}
|
|
else {}
|
|
);
|
|
packages = with pkgs;
|
|
[
|
|
yubico-piv-tool
|
|
ripgrep
|
|
gh
|
|
htop
|
|
sops
|
|
ncdu
|
|
progress
|
|
hexyl
|
|
mc
|
|
rclone
|
|
libarchive
|
|
p7zip
|
|
unrar
|
|
]
|
|
++ (
|
|
if desktop
|
|
then [
|
|
yubikey-manager
|
|
yt-dlp
|
|
oxipng
|
|
jpegoptim
|
|
picard
|
|
easytag
|
|
]
|
|
else []
|
|
);
|
|
};
|
|
|
|
programs.exa = {
|
|
enable = true;
|
|
enableAliases = true;
|
|
};
|
|
|
|
programs.bat = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.fzf = {
|
|
enable = true;
|
|
tmux.enableShellIntegration = true;
|
|
};
|
|
home.stateVersion = "22.05";
|
|
manual.manpages.enable = false; # broken
|
|
|
|
_module.args.withNSFW = false;
|
|
}
|