refactor: move common modules to modules/ directory

This commit is contained in:
toast 2026-04-27 17:45:21 +09:00
parent 3abbd61cfa
commit bf7e249d5b
35 changed files with 67 additions and 63 deletions

View file

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