Enable system flatpak via nix-flatpak and simplify HM

This commit is contained in:
randogoth 2026-02-03 13:07:02 +02:00
parent b7e9e1a2c2
commit 83ea723834
7 changed files with 86 additions and 14 deletions

View file

@ -0,0 +1,25 @@
{ lib, ... }:
{
services.flatpak = {
enable = true;
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
{
name = "flathub-beta";
location = "https://dl.flathub.org/beta-repo/flathub-beta.flatpakrepo";
}
];
update.auto = {
enable = true;
onCalendar = "daily";
};
packages = [
"com.github.tchx84.Flatseal"
"io.github.kolunmi.Bazaar"
];
};
}

View file

@ -6,6 +6,7 @@
pkgs.distrobox
pkgs.distroshelf
pkgs.fastfetch
pkgs.flatpak
pkgs.ghostty
pkgs.git
pkgs.home-manager