This commit is contained in:
Kat Inskip 2025-07-18 16:30:54 -07:00
parent f6f6ae6b6a
commit e1fb6158a0
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 86 additions and 5 deletions

View file

@ -0,0 +1,8 @@
_: {
services.flatpak.packages = [
{
appId = "com.usebottles.bottles";
origin = "flathub";
}
];
}

View file

@ -5,7 +5,6 @@
driversi686Linux.mesa
];
};
services.flatpak.enable = true;
programs.gamescope = {
enable = true;
package = pkgs.gamescope;

View file

@ -0,0 +1,20 @@
_: {
home-manager.sharedModules = [
({ config, ... }: {
xdg.systemDirs.data = [
"/var/lib/flatpak/exports/share"
"/home/${config.home.username}/.local/share/flatpak/exports/share/"
];
})
];
services.flatpak = {
enable = true;
update.auto = {
enable = true;
onCalendar = "weekly";
};
remotes = [
{ name = "flathub"; location = "https://dl.flathub.org/repo/flathub.flatpakrepo"; }
];
};
}