10 lines
272 B
Nix
10 lines
272 B
Nix
{config, libs, pkgs, ...}:
|
|
{
|
|
services.flatpak.enable = true;
|
|
services.flatpak.update.auto.enable = true;
|
|
services.flatpak.uninstallUnmanaged = false;
|
|
# Add here the flatpaks you want to install
|
|
services.flatpak.packages = [
|
|
"com.prusa3d.PrusaSlicer"
|
|
];
|
|
}
|