2024-12-20 17:54:57 +01:00
|
|
|
{ inputs, ... }: {
|
|
|
|
imports = [ inputs.flatpaks.homeManagerModules.declarative-flatpak ];
|
2024-01-26 18:04:50 +01:00
|
|
|
services.flatpak = {
|
|
|
|
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
|
|
|
packages = [
|
2024-05-06 17:39:21 +02:00
|
|
|
"flathub:app/md.obsidian.Obsidian//stable"
|
2024-11-02 11:30:15 +01:00
|
|
|
"flathub:app/com.github.iwalton3.jellyfin-media-player//stable"
|
2024-12-20 17:54:57 +01:00
|
|
|
"flathub:app/com.github.tchx84.Flatseal//stable"
|
2024-01-26 18:04:50 +01:00
|
|
|
];
|
2024-02-04 20:47:59 +01:00
|
|
|
overrides = {
|
2024-05-06 17:39:21 +02:00
|
|
|
global = {
|
2024-02-04 20:47:59 +01:00
|
|
|
filesystems = [
|
|
|
|
"~/.local/share/icons"
|
|
|
|
];
|
2024-05-06 17:39:21 +02:00
|
|
|
};
|
|
|
|
"md.obsidian.Obsidian" = {
|
2024-02-04 20:47:59 +01:00
|
|
|
sockets = [
|
2024-05-06 17:39:21 +02:00
|
|
|
"wayland"
|
|
|
|
"system-bus"
|
2024-02-04 20:47:59 +01:00
|
|
|
];
|
|
|
|
};
|
2024-11-02 11:30:15 +01:00
|
|
|
"com.github.iwalton3.jellyfin-media-player" = {
|
2024-12-20 17:54:57 +01:00
|
|
|
sockets = [
|
|
|
|
"!wayland"
|
|
|
|
];
|
2024-11-02 11:30:15 +01:00
|
|
|
};
|
2024-02-04 20:47:59 +01:00
|
|
|
};
|
2024-01-26 18:04:50 +01:00
|
|
|
};
|
|
|
|
}
|