From dfddc1372b9174ae3c07fc7786bfcf4e549da0a7 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 16 Oct 2023 21:38:38 +0200 Subject: [PATCH] Switch from Postman to Bruno --- instances/odin/hm.nix | 2 +- instances/thor/hm.nix | 2 +- modules/hm/development/web.nix | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 modules/hm/development/web.nix diff --git a/instances/odin/hm.nix b/instances/odin/hm.nix index 3ed6e24..e1a0cfe 100644 --- a/instances/odin/hm.nix +++ b/instances/odin/hm.nix @@ -53,7 +53,6 @@ virt-viewer wireguard-tools xournalpp - postman zoom-us; inherit (pkgs.gnome) # geary @@ -94,6 +93,7 @@ ../../modules/hm/development/nix.nix ../../modules/hm/development/python.nix ../../modules/hm/development/rust.nix + ../../modules/hm/development/web.nix # ../../modules/hm/alacritty.nix ../../modules/hm/autorandr.nix diff --git a/instances/thor/hm.nix b/instances/thor/hm.nix index 1a75149..9af9bc9 100644 --- a/instances/thor/hm.nix +++ b/instances/thor/hm.nix @@ -24,7 +24,6 @@ authenticator authy discord - postman dmenu docker-compose docker-machine @@ -86,6 +85,7 @@ ../../modules/hm/development/nix.nix ../../modules/hm/development/python.nix ../../modules/hm/development/rust.nix + ../../modules/hm/development/web.nix # ../../modules/hm/alacritty.nix ../../modules/hm/autorandr.nix diff --git a/modules/hm/development/web.nix b/modules/hm/development/web.nix new file mode 100644 index 0000000..281f8d3 --- /dev/null +++ b/modules/hm/development/web.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: { + home.packages = [ pkgs.unstable_pkgs.bruno ]; +} +