mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 03:10:19 +01:00
24 lines
437 B
Nix
24 lines
437 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
plasma5Packages.kdeconnect-kde
|
|
kdePackages.kdenlive
|
|
glaurung
|
|
cura-appimage
|
|
orca-slicer
|
|
anki-bin
|
|
rmview
|
|
sieve-editor-gui
|
|
rmc
|
|
rawtherapee
|
|
darktable
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
RMVIEW_CONF = pkgs.writers.writeJSON "rmview.json" {
|
|
ssh.auth_method = "key";
|
|
backend = "screenshare";
|
|
orientation = "portrait";
|
|
};
|
|
};
|
|
}
|