mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
49 lines
940 B
Nix
49 lines
940 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
services.flatpak = {
|
|
enable = true;
|
|
update.auto.enable = true;
|
|
remotes = [
|
|
{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}
|
|
];
|
|
packages = [
|
|
{
|
|
appId = "com.mattjakeman.ExtensionManager";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.prusa3d.PrusaSlicer";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.github.tchx84.Flatseal";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "org.gtk.Gtk3theme.Adwaita-dark";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "org.gtk.Gtk3theme.Flat-Remix-GTK-Red-Darkest";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.github.iwalton3.jellyfin-media-player";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "org.freecad.FreeCAD";
|
|
origin = "flathub";
|
|
}
|
|
];
|
|
};
|
|
}
|