mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-07 21:21:09 +01:00
20 lines
378 B
Nix
20 lines
378 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
plasma5Packages.kdeconnect-kde
|
|
kdePackages.kdenlive
|
|
glaurung
|
|
nur.repos.xeals.cura5
|
|
anki-bin
|
|
rmview
|
|
rmc
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
RMVIEW_CONF = pkgs.writers.writeJSON "rmview.json" {
|
|
ssh.auth_method = "key";
|
|
backend = "screenshare";
|
|
orientation = "portrait";
|
|
};
|
|
};
|
|
}
|