refactor: modularize programs and services

This commit is contained in:
lightly-toasted 2025-08-24 22:23:10 +09:00
parent 191d3c3392
commit f74e59d56b
16 changed files with 126 additions and 69 deletions

View file

@ -0,0 +1,26 @@
{ config, pkgs, ... }:
{
services.flatpak = {
enable = true;
packages = [
"org.prismlauncher.PrismLauncher"
"org.vinegarhq.Sober"
"org.vinegarhq.Vinegar"
"com.spotify.Client"
];
overrides = {
"org.prismlauncher.PrismLauncher".Context = {
filesystems = [
"home"
];
};
"org.vinegarhq.Sober".Context = {
filesystems = [
"xdg-run/app/com.discordapp.Discord:create"
"xdg-run/discord-ipc-0"
];
};
};
};
}