Add firefox to thinkpad

This commit is contained in:
Yan Lin 2025-09-13 09:54:50 +02:00
parent c5ba938baa
commit c1e2b34b50

View file

@ -1,8 +1,17 @@
{ config, pkgs, ... }: { config, pkgs, firefox-addons, ... }:
{ {
# Import the common NixOS home configuration # Import the common NixOS home configuration
imports = [ ../home-default.nix ]; imports = [
../home-default.nix
../../../modules/firefox.nix
];
# Enable Firefox with NixOS-specific package
programs.firefox-custom = {
enable = true;
package = pkgs.firefox;
};
# Any ThinkPad-specific home configurations can be added here # Any ThinkPad-specific home configurations can be added here
# For example, laptop-specific aliases or scripts # For example, laptop-specific aliases or scripts