Use overlay

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-17 21:24:31 +03:00
parent 795ea28583
commit 09fbf7150c
95 changed files with 546 additions and 735 deletions

View File

@@ -162,6 +162,12 @@ EOF
cat <<EOF > "./hosts/$host/default.nix"
{ inputs, ... }:
{
nixpkgs.overlays = [
inputs.lib.overlays.default
inputs.self.overlays.default
inputs.nur.overlays.default
];
imports = [
inputs.disko.nixosModules.disko
./format.nix

View File

@@ -4,7 +4,7 @@ set -o errexit
set -o nounset
set -o pipefail
find . -type f -name "*.nix" | while read -r file; do
find . -type f -name '*.nix' ! -path './submodules/*' | while read -r file; do
update_command=$(grep -oP '^#\s*AUTO-UPDATE:\s*\K.+' "$file" || true)
if [[ -n "$update_command" ]]; then
echo "Running update command in: $file"