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, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
||||||
<nix-flatpak/modules/nixos.nix>
|
services.flatpak = {
|
||||||
];
|
enable = true;
|
||||||
|
|
||||||
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
remotes = [
|
||||||
|
{
|
||||||
services.flatpak = {
|
name = "flathub";
|
||||||
enable = true;
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||||
|
}
|
||||||
remotes = [
|
];
|
||||||
{
|
|
||||||
name = "flathub";
|
packages = [
|
||||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
# zen now installed via flake, no longer needed here
|
||||||
}
|
];
|
||||||
];
|
|
||||||
|
overrides = {};
|
||||||
packages = [
|
|
||||||
"app.zen_browser.zen"
|
|
||||||
#"dev.vencord.Vesktop"
|
|
||||||
];
|
|
||||||
|
|
||||||
overrides = {
|
|
||||||
"app.zen_browser.zen" = {
|
|
||||||
Context.filesystems = [ "home:rw" ];
|
|
||||||
};
|
|
||||||
#"dev.vencord.Vesktop" = {
|
|
||||||
# Context.filesystems = [ "home:rw" ];
|
|
||||||
#};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue