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, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
nix-flatpak = builtins.fetchTarball {
|
|
||||||
url = "https://github.com/gmodena/nix-flatpak/archive/main.tar.gz";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# Pointing to the specific sub-folder path
|
<nix-flatpak/modules/nixos.nix>
|
||||||
"${nix-flatpak}/modules/nixos.nix"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# This matches the options provided by the nix-flatpak module
|
|
||||||
|
remotes = [
|
||||||
|
{
|
||||||
|
name = "flathub";
|
||||||
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
"io.github.zen_browser.zen"
|
"io.github.zen_browser.zen"
|
||||||
"dev.vencord.Vesktop"
|
"dev.vencord.Vesktop"
|
||||||
];
|
];
|
||||||
|
|
||||||
overrides = {
|
overrides = {
|
||||||
"io.github.zen_browser.zen" = {
|
"io.github.zen_browser.zen" = {
|
||||||
Context.filesystems = [ "home:rw" ];
|
Context.filesystems = [ "home:rw" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue