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": { "nvchad-starter": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1782738765, "lastModified": 1786971647,
"narHash": "sha256-/jxBHJ74FYVYm8JGO3ay2J3B2/Rf3/KvroivtJFFJRM=", "narHash": "sha256-RsRq+BRIrpSzDUU6hF+ITwFcjtiIPsFpk220+Civ010=",
"owner": "naps62", "ref": "refs/heads/main",
"repo": "nvchad-starter", "rev": "4db90cb097f2358b8adb8c11f116e4201b81d0f6",
"rev": "020bf7716ea1b7d233cbdaef63c8585791f896b7", "revCount": 178,
"type": "github" "type": "git",
"url": "https://git.naps.pt/naps62/nvim-config.git"
}, },
"original": { "original": {
"owner": "naps62", "type": "git",
"repo": "nvchad-starter", "url": "https://git.naps.pt/naps62/nvim-config.git"
"type": "github"
} }
}, },
"nvchad4nix": { "nvchad4nix": {
+1 -1
View File
@@ -21,7 +21,7 @@
inputs.nvchad-starter.follows = "nvchad-starter"; inputs.nvchad-starter.follows = "nvchad-starter";
}; };
nvchad-starter = { nvchad-starter = {
url = "github:naps62/nvchad-starter"; url = "git+https://git.naps.pt/naps62/nvim-config.git";
flake = false; flake = false;
}; };
foundry = { foundry = {
+6
View File
@@ -33,6 +33,12 @@
services.dbus.packages = with pkgs; [ gcr ]; 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. # Compressed RAM swap — better behaviour under memory pressure.
zramSwap.enable = true; zramSwap.enable = true;