diff options
| author | Mike Vink <> | 2023-04-17 13:56:30 +0200 |
|---|---|---|
| committer | Mike Vink <> | 2023-04-17 13:56:30 +0200 |
| commit | 0acaf2146e96c087a8994b76a75395958d10ee5f (patch) | |
| tree | 1cb59fb3314aa30125fbdfd3693fefbb2ad5b0d6 | |
| parent | eb50a08623d2f3f3fa478730278ad7a4cc53c353 (diff) | |
fixup
| -rw-r--r-- | home.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -30,7 +30,6 @@ programs.newsboat = { enable = true; autoReload = true; - urls = [{url = "https://github.com/rancher/rancher/releases.atom";}]; extraConfig = '' # general settings max-items 50 @@ -66,6 +65,10 @@ programs.bash = { enable = true; + profileExtra = '' + # include nix.sh if it exists + [[ -f ~/.nix-profile/etc/profile.d/nix.sh ]] && . ~/.nix-profile/etc/profile.d/nix.sh + ''; shellAliases = { k9s = "COLORTERM=truecolor k9s"; ls = "ls --color=auto"; |
