summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/networking/tools/http
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-09 04:43:38 -0700
committerFuwn <[email protected]>2024-09-09 04:43:38 -0700
commit839b40baca6d057e1c78a96319b168b047ca12f4 (patch)
tree1f34ff07597ad516bde543e7a8686b0f8c6161a1 /home/ebisu/fortune/networking/tools/http
parentBump: system.autoUpgrade.allowReboot (diff)
downloadnixos-config-839b40baca6d057e1c78a96319b168b047ca12f4.tar.xz
nixos-config-839b40baca6d057e1c78a96319b168b047ca12f4.zip
Bump: organise
Diffstat (limited to 'home/ebisu/fortune/networking/tools/http')
-rw-r--r--home/ebisu/fortune/networking/tools/http/default.nix9
-rw-r--r--home/ebisu/fortune/networking/tools/http/httpie.nix7
-rw-r--r--home/ebisu/fortune/networking/tools/http/wget.nix8
3 files changed, 24 insertions, 0 deletions
diff --git a/home/ebisu/fortune/networking/tools/http/default.nix b/home/ebisu/fortune/networking/tools/http/default.nix
new file mode 100644
index 0000000..b47540f
--- /dev/null
+++ b/home/ebisu/fortune/networking/tools/http/default.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ./httpie.nix
+ ./wget.nix
+ ];
+
+ home.packages = [ (pkgs.callPackage ../../../../../../pkgs/yaak.nix { }) ];
+}
diff --git a/home/ebisu/fortune/networking/tools/http/httpie.nix b/home/ebisu/fortune/networking/tools/http/httpie.nix
new file mode 100644
index 0000000..f27ef26
--- /dev/null
+++ b/home/ebisu/fortune/networking/tools/http/httpie.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ httpie
+ httpie-desktop
+ ];
+}
diff --git a/home/ebisu/fortune/networking/tools/http/wget.nix b/home/ebisu/fortune/networking/tools/http/wget.nix
new file mode 100644
index 0000000..c5d2936
--- /dev/null
+++ b/home/ebisu/fortune/networking/tools/http/wget.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }:
+{
+ home.packages = [ pkgs.wget ];
+
+ xdg.configFile."wget/wgetrc".text = ''
+ hsts-file=~/.cache/wget-hsts
+ '';
+}