switch to flatpak zen browser

This commit is contained in:
2024-10-30 23:04:55 +01:00
parent 1229d516f9
commit 4fb1fa9d2c
14 changed files with 22 additions and 430 deletions

10
config/nixos/flatpak.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }: {
services.flatpak.enable = true;
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
}