38 lines
598 B
Nix
38 lines
598 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
libreoffice
|
|
xarchiver
|
|
trilium-desktop
|
|
xournalpp
|
|
krita
|
|
libresprite
|
|
mpv
|
|
inkscape
|
|
qimgv
|
|
wineWowPackages.staging
|
|
ytmdesktop
|
|
|
|
inputs.zen-browser.packages."${system}".default.override
|
|
{
|
|
policies = {
|
|
DisableAppUpdate = true;
|
|
DisableTelemetry = true;
|
|
};
|
|
}
|
|
|
|
kdePackages.dolphin
|
|
];
|
|
|
|
file = {
|
|
".config/kdeglobals".text = ''
|
|
[General]
|
|
TerminalApplication=foot
|
|
'';
|
|
};
|
|
};
|
|
}
|