nix-config/modules/nix/browser/floorp.nix

16 lines
304 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.floorp.enable = mkOption {
type = types.bool;
default = false;
description = "floorp";
};
config = mkIf config.smayzy.floorp.enable {
environment.systemPackages = with pkgs; [ floorp ];
};
}