feat: broke leyla firefox config into submodules

This commit is contained in:
Leyla Becker 2025-10-26 13:17:48 -05:00
parent c97d43957d
commit 7ad6a83dfa
6 changed files with 439 additions and 345 deletions

View file

@ -0,0 +1,18 @@
{
lib,
pkgs,
inputs,
...
}: {
imports = [
./firefox.nix
./bookmarks.nix
./harden.nix
];
config = {
programs.firefox = {
enable = true;
};
};
}