mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 17:41:53 -05:00
aly/firefox: simplify
This commit is contained in:
parent
112c5aa92e
commit
2a9bd21957
|
@ -1,21 +1,18 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
self,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.file = let
|
home.file = let
|
||||||
recursive = false;
|
|
||||||
source = builtins.fetchGit {
|
source = builtins.fetchGit {
|
||||||
url = "https://github.com/rafaelmardojai/firefox-gnome-theme.git";
|
url = "https://github.com/rafaelmardojai/firefox-gnome-theme.git";
|
||||||
rev = "8fb5267c5b3434f76983e29749aba7cd636e03ca";
|
rev = "8fb5267c5b3434f76983e29749aba7cd636e03ca";
|
||||||
ref = "master";
|
ref = "master";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
".mozilla/firefox/default/chrome" = {inherit recursive source;};
|
".mozilla/firefox/default/chrome" = {inherit source;};
|
||||||
".mozilla/firefox/work/chrome" = {inherit recursive source;};
|
".mozilla/firefox/work/chrome" = {inherit source;};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
|
|
Loading…
Reference in a new issue