This commit is contained in:
ediblerope 2026-03-28 12:28:17 +00:00 committed by GitHub
parent d58afb8db7
commit 80b12d254a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,34 +1,21 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
imports = [ config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
<nix-flatpak/modules/nixos.nix> services.flatpak = {
]; enable = true;
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) { remotes = [
{
services.flatpak = { name = "flathub";
enable = true; location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
remotes = [ ];
{
name = "flathub"; packages = [
location = "https://dl.flathub.org/repo/flathub.flatpakrepo"; # zen now installed via flake, no longer needed here
} ];
];
overrides = {};
packages = [
"app.zen_browser.zen"
#"dev.vencord.Vesktop"
];
overrides = {
"app.zen_browser.zen" = {
Context.filesystems = [ "home:rw" ];
};
#"dev.vencord.Vesktop" = {
# Context.filesystems = [ "home:rw" ];
#};
}; };
}; };
}; }
}