restructuring

This commit is contained in:
maxstrb 2025-08-05 22:07:42 +02:00
parent bd6c9e6d7e
commit 31b1b98809
15 changed files with 260 additions and 233 deletions

View file

@ -1,21 +1,23 @@
{pkgs, ...}: {
home.packages = with pkgs; [
libreoffice
kdePackages.kate
kdePackages.dolphin
kdePackages.ark
trilium-next-desktop
krita
libresprite
mpv
inkscape
qimgv
wineWowPackages.staging
ytmdesktop
];
home = {
packages = with pkgs; [
libreoffice
xarchiver
trilium-next-desktop
krita
libresprite
mpv
inkscape
qimgv
wineWowPackages.staging
ytmdesktop
];
home.file.".config/kdeglobals".text = ''
[General]
TerminalApplication=foot
'';
file = {
".config/kdeglobals".text = ''
[General]
TerminalApplication=foot
'';
};
};
}