Update flatpaks.nix
This commit is contained in:
parent
7c942aa490
commit
6cbf9ef7ba
1 changed files with 10 additions and 9 deletions
|
|
@ -1,23 +1,24 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
nix-flatpak = builtins.fetchTarball {
|
||||
url = "https://github.com/gmodena/nix-flatpak/archive/main.tar.gz";
|
||||
};
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
# Pointing to the specific sub-folder path
|
||||
"${nix-flatpak}/modules/nixos.nix"
|
||||
<nix-flatpak/modules/nixos.nix>
|
||||
];
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
# This matches the options provided by the nix-flatpak module
|
||||
|
||||
remotes = [
|
||||
{
|
||||
name = "flathub";
|
||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||
}
|
||||
];
|
||||
|
||||
packages = [
|
||||
"io.github.zen_browser.zen"
|
||||
"dev.vencord.Vesktop"
|
||||
];
|
||||
|
||||
overrides = {
|
||||
"io.github.zen_browser.zen" = {
|
||||
Context.filesystems = [ "home:rw" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue