nixconf/common/firefox.nix
2024-03-02 11:31:56 +01:00

13 lines
168 B
Nix

{ config, pkgs, inputs, ... }:
{
home.packages = with pkgs; [
firefox
];
programs.firefox = {
enable = true;
# TODO add some default firefox settings
};
}