Compare commits

...

4 commits

Author SHA1 Message Date
willifan
27420bc9a3 adapt to mako changes 2025-11-07 19:32:58 +01:00
willifan
599ffc234a added vlc 2025-11-07 19:32:58 +01:00
willifan
746dba5a9e added blender and openscad 2025-11-07 19:32:58 +01:00
willifan
bd11c22796 added Freecad 2025-11-07 19:32:58 +01:00
2 changed files with 8 additions and 3 deletions

View file

@ -43,8 +43,10 @@ in
services.mako = lib.mkIf config.desktop.mako.enable { services.mako = lib.mkIf config.desktop.mako.enable {
enable = true; enable = true;
borderRadius = 10; settings = {
borderSize = 2; borderRadius = 10;
borderSize = 2;
};
}; };
services.hypridle = lib.mkIf config.desktop.hypridle.enable { services.hypridle = lib.mkIf config.desktop.hypridle.enable {

View file

@ -5,6 +5,7 @@ lib.mkIf config.desktop.enable {
(with pkgs; [ (with pkgs; [
feh feh
vlc
enpass enpass
proton-pass proton-pass
@ -21,12 +22,14 @@ lib.mkIf config.desktop.enable {
qemu qemu
libreoffice libreoffice
#blender
gimp gimp
inkscape inkscape
prusa-slicer prusa-slicer
UVtools UVtools
audacity audacity
freecad-wayland
blender
openscad
]); ]);
} }