From 2a9bd21957c776f246fe6d197f9bfc08c5a2b04b Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 2 Jul 2024 19:48:17 -0400 Subject: [PATCH] aly/firefox: simplify --- homes/aly/firefox/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/homes/aly/firefox/default.nix b/homes/aly/firefox/default.nix index fb68e6a4..b0533817 100644 --- a/homes/aly/firefox/default.nix +++ b/homes/aly/firefox/default.nix @@ -1,21 +1,18 @@ { config, - inputs, lib, pkgs, - self, ... }: { home.file = let - recursive = false; source = builtins.fetchGit { url = "https://github.com/rafaelmardojai/firefox-gnome-theme.git"; rev = "8fb5267c5b3434f76983e29749aba7cd636e03ca"; ref = "master"; }; in { - ".mozilla/firefox/default/chrome" = {inherit recursive source;}; - ".mozilla/firefox/work/chrome" = {inherit recursive source;}; + ".mozilla/firefox/default/chrome" = {inherit source;}; + ".mozilla/firefox/work/chrome" = {inherit source;}; }; programs.firefox = {