Files
pkgmgr/.gitignore
Kevin Veen-Birkenbach 74189c1e14 Add virgin Nix flake E2E workflow and update .gitignore
- Introduce `test-nix-flake-e2e.yml` workflow to run a full Arch-based virgin
  environment test with Nix flakes enabled and shared Docker caches
- Ensure pkgmgr self-installation and flake-based installer path are exercised
- Update .gitignore with additional build artifacts, Debian packaging files,
  and pkgmgr output directories
2025-12-10 18:37:29 +01:00

41 lines
470 B
Plaintext

# Prevents unwanted files from being committed to version control.
# Python bytecode
__pycache__/
*.pyc
# Virtual environments
.venv/
venv/
.venvs/
# Build artifacts
dist/
build/*
*.egg-info/
pkg
package-manager-*
# debian
debian/package-manager/
debian/debhelper-build-stamp
debian/files
debian/.debhelper/
debian/package-manager.substvars
# Editor files
.vscode/
.idea/
# OS noise
.DS_Store
Thumbs.db
# Nix Cache to speed up tests
.nix/
# Ignore logs
*.log