nix-dotfiles/hmModules/apps/librewolf/default.nix

17 lines
289 B
Nix
Raw Normal View History

2024-04-14 05:40:02 -07:00
{ config, pkgs, lib, ... }:
{
options.librewolf = {
enable = lib.mkEnableOption "Enables librewolf";
};
config = lib.mkIf config.librewolf.enable {
home.packages = with pkgs; [
librewolf
];
home.sessionVariables = {
BROWSER = "librewolf";
};
};
}