aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-02-02 08:51:02 -0800
committerFranck Cuny <franck@fcuny.net>2024-02-02 08:53:16 -0800
commit16545ae411aa886e94be0deaae79e07f39b9adfb (patch)
tree890d35ae99c9aa397d34baf4607853760f5098dd /flake.nix
parentrun CI commands in a nix shell (diff)
downloadinfra-16545ae411aa886e94be0deaae79e07f39b9adfb.tar.gz
install firefox
The firefox packages for darwin are broken. `bandithedoge/nixpkgs-firefox-darwin` provides an overlay to install the package on darwin. Add some specific configurations to make firefox work as I want out of the box. We also add NUR to install some firefox extensions (ublock, 1password).
Diffstat (limited to '')
-rw-r--r--flake.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 93df93c..321b657 100644
--- a/flake.nix
+++ b/flake.nix
@@ -19,6 +19,13 @@
inputs.nixpkgs.follows = "nixpkgs";
};
+ firefox-darwin = {
+ url = "github:bandithedoge/nixpkgs-firefox-darwin";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
+ nur = { url = "github:nix-community/NUR"; };
+
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";