summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Vink <mike.vink@stater.nl>2023-05-17 08:16:20 +0000
committerMike Vink <mike.vink@stater.nl>2023-05-17 08:16:20 +0000
commit728f4fe12181c1e99b5842169aacf3938b36a7f3 (patch)
tree3cc642992488b397c12bfd73a89efb18e1da34a6
parent14658fec1b6a9e3b629a647a5a291199ec488c6f (diff)
forgot no_proxy
-rw-r--r--flake.nix1
-rw-r--r--home/kakoune.nix11
-rw-r--r--home/packages.nix3
-rw-r--r--shell-scripts/nixup1
4 files changed, 16 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 2bee698..9323500 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,6 +51,7 @@
./home/codeium.nix
./home/packages.nix
./home/newsboat.nix
+ ./home/kakoune.nix
];
extraSpecialArgs = {
inherit home-manager username email;
diff --git a/home/kakoune.nix b/home/kakoune.nix
new file mode 100644
index 0000000..5870388
--- /dev/null
+++ b/home/kakoune.nix
@@ -0,0 +1,11 @@
+{
+ flake,
+ config,
+ pkgs,
+ home-manager,
+ ...
+}: {
+ programs.kakoune = {
+ enable = true;
+ };
+}
diff --git a/home/packages.nix b/home/packages.nix
index 15f09e2..723b730 100644
--- a/home/packages.nix
+++ b/home/packages.nix
@@ -18,6 +18,9 @@
dasel
initool
# shell tools
+ bashInteractive
+ k9s
+ tmux
powershell
azure-cli
htop
diff --git a/shell-scripts/nixup b/shell-scripts/nixup
index 6e66ae4..1270a89 100644
--- a/shell-scripts/nixup
+++ b/shell-scripts/nixup
@@ -69,6 +69,7 @@ EOF
-e GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt \
-e NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt \
-e SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt \
+ -e no_proxy=$no_proxy \
-e http_proxy=$http_proxy \
-e https_proxy=$http_proxy \
-e SHELL=bash \