NixOS/home/programs/bruno.nix

14 lines
183 B
Nix
Raw Permalink Normal View History

{
pkgs,
config,
lib,
...
}:
2024-08-12 16:41:11 +07:00
let
cfg = config.profile.home.programs.bruno;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable { home.packages = with pkgs; [ bruno ]; };
2024-08-12 16:41:11 +07:00
}