[tohru] Modularise firefox config

(such as it is)
This commit is contained in:
Katherina Walshe-Grey 2024-06-05 22:38:13 +01:00
parent c8da705e4b
commit 104d995dd2
2 changed files with 7 additions and 2 deletions

6
home/firefox.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
# TODO: nix-ify Firefox config
programs.firefox.enable = true;
}

View file

@ -5,6 +5,7 @@
imports = [
../../home/btop.nix
../../home/cli.nix
../../home/firefox.nix
../../home/gnome
../../home/vscode.nix
];
@ -13,9 +14,7 @@
bitwarden
tor-browser-bundle-bin
];
programs.chromium.enable = true;
programs.firefox.enable = true;
home.stateVersion = "23.11";
};