Fix Zen #5

Merged
linusemr618 merged 2 commits from linusemr618/nixy:main into main 2026-07-22 12:04:24 +00:00
3 changed files with 10 additions and 7 deletions
Showing only changes of commit c00b1353d1 - Show all commits
+2 -2
View File
@@ -28,8 +28,8 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
zen-browser = {
+2 -2
View File
@@ -8,10 +8,10 @@
enable = true;
profiles.default = {
extensions = {
packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
packages = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
video-downloadhelper
firefox-multi-account-containers
multi-account-containers
noscript
];
};
+4 -1
View File
@@ -22,10 +22,13 @@ in {
];
}
];
nixpkgs.config = {
nixpkgs = {
config = {
allowUnfree = true;
allowBroken = false;
};
overlays = [inputs.nur.overlays.default];
};
nix = {
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
channel.enable = false;