Nixfiles/personal-gui/hm.nix

25 lines
437 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.packages = with pkgs; [
plasma5Packages.kdeconnect-kde
2024-08-02 16:41:46 +02:00
kdePackages.kdenlive
2024-01-27 12:14:58 +01:00
glaurung
cura-appimage
2025-02-19 20:15:48 +01:00
orca-slicer
2024-08-09 11:46:19 +02:00
anki-bin
2024-12-21 23:45:01 +01:00
rmview
2025-01-28 18:07:38 +01:00
sieve-editor-gui
2024-12-22 11:16:34 +01:00
rmc
2025-05-23 21:31:59 +02:00
rawtherapee
darktable
];
2024-12-21 23:45:01 +01:00
home.sessionVariables = {
RMVIEW_CONF = pkgs.writers.writeJSON "rmview.json" {
ssh.auth_method = "key";
backend = "screenshare";
orientation = "portrait";
};
};
}