mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
26 lines
534 B
Nix
26 lines
534 B
Nix
{ 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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|