18 lines
283 B
Nix
18 lines
283 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
|
|
profiles.chris = {
|
|
extensions = with inputs.firefox-addons.packages."x86_64-linux"; [
|
|
darkreader
|
|
i-dont-care-about-cookies
|
|
ublock-origin
|
|
];
|
|
};
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|