cleanup, reorganise, syncthing

This commit is contained in:
2025-03-26 16:33:45 +02:00
parent d4b568a0d5
commit 8cd8b47273
3 changed files with 43 additions and 15 deletions

View File

@ -1,13 +1,17 @@
{pkgs, ...}: {
shell = {
fish.enable = true;
nushell.enable = false;
oh-my-posh.enable = true;
};
console.yazi.enable = true;
stylix.targets.fzf.enable = false;
services.ssh-agent.enable = true;
services.pueue.enable = true;
syncthing.enable = true;
programs = {
bat.enable = true;
btop = {
@ -34,6 +38,7 @@
pom = "push origin main";
};
};
jujutsu.enable = true;
ripgrep.enable = true;
};
@ -47,20 +52,36 @@
};
home.packages = with pkgs; [
alejandra # nix formatter
flatpak # flatpak cli
trashy # trash cli
procs # ps in rust
ouch # archive manager in runt
alejandra # nix formatter in rust
devenv # programming deps in rust
dust # du in rust
fend # calc in rust
moar # better pager
tree # tree util
rbw # bitwarden cli in rust
flatpak # flatpak cli
jj-fzf # fuzzy finder jujutsu tui
just # make in rust
ouch # archive manager in runt
overskride # bluetooth gui in rust
pika-backup # borg gui in rust
pinentry-qt # pinentry for rbw
procs # ps in rust
rbw # bitwarden cli in rust
trashy # trash cli in rust
vial # qmk keyboard configuring app
waycheck # check wayland protocols
virt-manager # libvirt gui
waycheck # check wayland protocols
];
systemd.user.settings.Manager.DefaultEnvironment.PAGER = "moar";
xdg.desktopEntries = {
uni = {
actions."Copy".exec = "fish -c \"~/.local/bin/uni --copy\"";
categories = ["Utility" "X-Launch" "Network"];
comment = "Select and open or copy URLs from a list.";
exec = "fish -c \"~/.local/bin/uni\"";
icon = "web-browser";
name = "Uni URL Handler";
startupNotify = true;
terminal = false;
type = "Application";
};
};
}