Add Firefox configuration to common.

This commit is contained in:
jay
2025-06-29 01:17:41 -04:00
parent 15ed945bbf
commit 69cfb61b0b
2 changed files with 9 additions and 0 deletions

View File

@@ -1,8 +1,13 @@
{ pkgs, ... }:
{
imports = [
./firefox.nix
];
nixpkgs = {
config.allowUnfree = true;
};
nix = {
gc.options = "--delete-older-than 30d";
optimise.automatic = true;

View File

@@ -0,0 +1,4 @@
{ pkgs, ... }: {
programs.firefox.enable = true;
}