fix: point nvchad-starter to git.naps.pt/naps62/nvim-config, add /bin/bash symlink
CI / lint (push) Successful in 29s
CI / eval (push) Failing after 20m59s

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Miguel Palhas
2026-08-17 14:29:39 +01:00
parent 395055ed35
commit 352700fdab
3 changed files with 16 additions and 10 deletions
Generated
+9 -9
View File
@@ -933,17 +933,17 @@
"nvchad-starter": {
"flake": false,
"locked": {
"lastModified": 1782738765,
"narHash": "sha256-/jxBHJ74FYVYm8JGO3ay2J3B2/Rf3/KvroivtJFFJRM=",
"owner": "naps62",
"repo": "nvchad-starter",
"rev": "020bf7716ea1b7d233cbdaef63c8585791f896b7",
"type": "github"
"lastModified": 1786971647,
"narHash": "sha256-RsRq+BRIrpSzDUU6hF+ITwFcjtiIPsFpk220+Civ010=",
"ref": "refs/heads/main",
"rev": "4db90cb097f2358b8adb8c11f116e4201b81d0f6",
"revCount": 178,
"type": "git",
"url": "https://git.naps.pt/naps62/nvim-config.git"
},
"original": {
"owner": "naps62",
"repo": "nvchad-starter",
"type": "github"
"type": "git",
"url": "https://git.naps.pt/naps62/nvim-config.git"
}
},
"nvchad4nix": {
+1 -1
View File
@@ -21,7 +21,7 @@
inputs.nvchad-starter.follows = "nvchad-starter";
};
nvchad-starter = {
url = "github:naps62/nvchad-starter";
url = "git+https://git.naps.pt/naps62/nvim-config.git";
flake = false;
};
foundry = {
+6
View File
@@ -33,6 +33,12 @@
services.dbus.packages = with pkgs; [ gcr ];
# NixOS provides /bin/sh but not /bin/bash. Some third-party scripts
# hardcode #!/bin/bash, so provide it too.
system.activationScripts.binbash = ''
ln -sf ${pkgs.bash}/bin/bash /bin/bash
'';
# Compressed RAM swap — better behaviour under memory pressure.
zramSwap.enable = true;