diff options
| author | Mike Vink <mike.vink@stater.nl> | 2023-05-17 08:16:20 +0000 |
|---|---|---|
| committer | Mike Vink <mike.vink@stater.nl> | 2023-05-17 08:16:20 +0000 |
| commit | 728f4fe12181c1e99b5842169aacf3938b36a7f3 (patch) | |
| tree | 3cc642992488b397c12bfd73a89efb18e1da34a6 | |
| parent | 14658fec1b6a9e3b629a647a5a291199ec488c6f (diff) | |
forgot no_proxy
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | home/kakoune.nix | 11 | ||||
| -rw-r--r-- | home/packages.nix | 3 | ||||
| -rw-r--r-- | shell-scripts/nixup | 1 |
4 files changed, 16 insertions, 0 deletions
@@ -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 \ |
