initial commit

This commit is contained in:
2026-07-21 13:13:31 -04:00
commit 2ac6ab0dd5
23 changed files with 2614 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, ... }:
{
services.flatpak = {
enable = true;
update.auto = {
enable = true;
onCalendar = "weekly";
};
remotes = lib.mkOptionDefault [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
{
name = "flathub-beta";
location = "https://dl.flathub.org/beta-repo/flathub-beta.flatpakrepo";
}
];
};
}