nixos/apps/flatpaks.nix

21 lines
447 B
Nix
Raw Normal View History

2026-01-20 10:06:35 +00:00
{ config, pkgs, lib, ... }:
2025-12-19 09:16:14 +00:00
{
2026-03-28 12:28:17 +00:00
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
services.flatpak = {
enable = true;
2026-01-20 10:06:01 +00:00
2026-03-28 12:28:17 +00:00
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
];
packages = [
# zen now installed via flake, no longer needed here
];
overrides = {};
2025-12-19 09:16:14 +00:00
};
};
2026-03-28 12:28:17 +00:00
}