Nixfiles/personal-gui/hm.nix
Quentin Boyer 60d877f380
Some checks failed
Build / check (push) Failing after 13s
Build / load_packages (push) Failing after 14s
Build / build (push) Has been skipped
Build / build-status (push) Failing after 4s
personal-gui: Ignore broken package
2026-01-16 23:28:54 +01:00

28 lines
526 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
kdePackages.kdeconnect-kde
kdePackages.kdenlive
glaurung
cura-appimage
orca-slicer
anki-bin
rmview
#sieve-editor-gui
rmc
rawtherapee
darktable
audacity
android-tools
];
home.sessionVariables = {
RMVIEW_CONF = pkgs.writers.writeJSON "rmview.json" {
ssh.auth_method = "key";
backend = "screenshare";
orientation = "portrait";
};
};
services.gpg-agent.pinentry.package = pkgs.pinentry-rofi;
}