bruno: added bruno app

This commit is contained in:
Tigor Hutasuhut 2024-08-12 16:41:11 +07:00
parent 1e9efb4081
commit f75c08852d
4 changed files with 19 additions and 3 deletions

12
home/programs/bruno.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, config, lib, ... }:
let
cfg = config.profile.home.programs.bruno;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
bruno
];
};
}

View file

@ -2,6 +2,7 @@
{ {
imports = [ imports = [
./bitwarden.nix ./bitwarden.nix
./bruno.nix
./chromium.nix ./chromium.nix
./dbeaver.nix ./dbeaver.nix
./discord.nix ./discord.nix

View file

@ -108,6 +108,7 @@
}; };
}; };
foot.enable = lib.mkEnableOption "foot"; foot.enable = lib.mkEnableOption "foot";
bruno.enable = lib.mkEnableOption "bruno";
}; };
programs = { programs = {

View file

@ -70,9 +70,11 @@
podman.enable = true; podman.enable = true;
home.programs.foot.enable = true; home.programs = {
foot.enable = true;
home.programs.zellij.enable = true; zellij.enable = true;
bruno.enable = true;
};
games.minecraft.enable = true; games.minecraft.enable = true;
}; };