Skip to content

Commit

Permalink
Fix to specify uninstalling firefox package from home-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 11, 2024
1 parent c203414 commit 0fe5efe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion home-manager/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ lib.mkMerge [
# https://github.com/nix-community/home-manager/blob/release-24.05/modules/programs/firefox.nix
programs.firefox = {
enable = true;
package = pkgs.emptyDirectory;
# In firefox package, use null instead of `pkgs.emptyDirectory`
# - https://github.com/kachick/dotfiles/pull/835#discussion_r1796307643
# - https://github.com/nix-community/home-manager/blob/342a1d682386d3a1d74f9555cb327f2f311dda6e/modules/programs/firefox/mkFirefoxModule.nix#L264
package = null;
profiles.default = {
isDefault = true;
settings = {
Expand Down

0 comments on commit 0fe5efe

Please sign in to comment.