Create flatpaks.nix

This commit is contained in:
ediblerope 2025-12-19 09:16:14 +00:00 committed by GitHub
parent ad07bd8090
commit cd77163505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

18
apps/flatpaks.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
imports = [
<nix-flatpak/nixos.nix>
];
services.flatpak = {
enable = true;
packages = [
"io.github.zen_browser.zen"
];
overrides = {
"io.github.zen_browser.zen" = {
Context.filesystems = [ "home:rw" ];
};
};
};
}