This commit is contained in:
parent
d58afb8db7
commit
80b12d254a
1 changed files with 16 additions and 29 deletions
|
|
@ -1,34 +1,21 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
<nix-flatpak/modules/nixos.nix>
|
||||
];
|
||||
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
|
||||
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
|
||||
remotes = [
|
||||
{
|
||||
name = "flathub";
|
||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||
}
|
||||
];
|
||||
|
||||
packages = [
|
||||
"app.zen_browser.zen"
|
||||
#"dev.vencord.Vesktop"
|
||||
];
|
||||
|
||||
overrides = {
|
||||
"app.zen_browser.zen" = {
|
||||
Context.filesystems = [ "home:rw" ];
|
||||
};
|
||||
#"dev.vencord.Vesktop" = {
|
||||
# Context.filesystems = [ "home:rw" ];
|
||||
#};
|
||||
remotes = [
|
||||
{
|
||||
name = "flathub";
|
||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||
}
|
||||
];
|
||||
|
||||
packages = [
|
||||
# zen now installed via flake, no longer needed here
|
||||
];
|
||||
|
||||
overrides = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue