an attempt at firefox

This commit is contained in:
Aria Nolan 2023-11-05 01:59:16 -04:00
parent 9f77bbb4ab
commit 2a9236e833
2 changed files with 13 additions and 1 deletions

View file

@ -2,6 +2,7 @@
imports = [
./kitty.nix
./git.nix
./firefox.nix
];
programs.eza = {
@ -13,5 +14,4 @@
programs.bat = {
enable = true;
};
}

View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
programs.firefox = {
enable = true;
profiles = {
"aria" = {
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
];
};
};
};
}