From 104d995dd28718956f287c0f0f0ad33442163023 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 5 Jun 2024 22:38:13 +0100 Subject: [PATCH] [tohru] Modularise firefox config (such as it is) --- home/firefox.nix | 6 ++++++ hosts/tohru/home.nix | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 home/firefox.nix diff --git a/home/firefox.nix b/home/firefox.nix new file mode 100644 index 0000000..95e399e --- /dev/null +++ b/home/firefox.nix @@ -0,0 +1,6 @@ +{ config, lib, pkgs, ... }: + +{ + # TODO: nix-ify Firefox config + programs.firefox.enable = true; +} diff --git a/hosts/tohru/home.nix b/hosts/tohru/home.nix index 3067b81..6451627 100644 --- a/hosts/tohru/home.nix +++ b/hosts/tohru/home.nix @@ -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"; };