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

View File

@@ -6,6 +6,7 @@
./nvidia.nix
./virtualization.nix
./users.nix
./flatpak.nix
];
# Bootloader.
@@ -84,6 +85,7 @@
"1password/custom_allowed_browsers" = {
text = ''
firefox
brave
'';
mode = "0755";
};

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
'';
};
}