Add firefox to thinkpad
This commit is contained in:
parent
c5ba938baa
commit
c1e2b34b50
1 changed files with 11 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue