mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:13:55 -05:00
aly/firefox: simplify
This commit is contained in:
parent
112c5aa92e
commit
2a9bd21957
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue