mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
19 lines
446 B
Nix
Executable file
19 lines
446 B
Nix
Executable file
{pkgs, ...}:{
|
|
programs = {
|
|
firefox = {
|
|
enable = true;
|
|
profiles = {
|
|
gerg = {
|
|
name = "gerg";
|
|
extraConfig = ( builtins.readFile
|
|
(pkgs.fetchFromGitHub {
|
|
owner = "ISnortPennies";
|
|
repo = "user.js";
|
|
rev = "master";
|
|
sha256 = "BMEUZDelkcHDF8Yt9aa+3pGkGkodL7VEQ1hQBU6Fuug=";
|
|
} + "/user.js") );
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|