nixos-config/home-manager/firefox.nix

10 lines
103 B
Nix

{ config, lib, pkgs, user, ... }:
{
programs = {
firefox = {
enable = true;
};
};
}