Create flatpaks.nix
This commit is contained in:
parent
ad07bd8090
commit
cd77163505
1 changed files with 18 additions and 0 deletions
18
apps/flatpaks.nix
Normal file
18
apps/flatpaks.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue