├── .gitignore ├── LICENSE ├── README.md ├── doc ├── configuration.md └── troubleshooting.md ├── flake.nix └── tests ├── advanced ├── configuration.nix ├── flake.lock ├── flake.nix ├── hardware-configuration.nix ├── nixos-lact-init.diff └── osu-nix-pr-20-607-0.diff ├── custom-system ├── configuration.nix ├── flake.lock ├── flake.nix └── hardware-configuration.nix ├── file-rename-fetchpatch ├── configuration.nix ├── flake.lock ├── flake.nix └── hardware-configuration.nix ├── lib.nix ├── patch-nixpkgs ├── flake.lock └── flake.nix ├── run-all.sh └── simple ├── configuration.nix ├── flake.lock ├── flake.nix └── hardware-configuration.nix /.gitignore: -------------------------------------------------------------------------------- 1 | result* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/README.md -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/flake.nix -------------------------------------------------------------------------------- /tests/advanced/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/configuration.nix -------------------------------------------------------------------------------- /tests/advanced/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/flake.lock -------------------------------------------------------------------------------- /tests/advanced/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/flake.nix -------------------------------------------------------------------------------- /tests/advanced/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/hardware-configuration.nix -------------------------------------------------------------------------------- /tests/advanced/nixos-lact-init.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/nixos-lact-init.diff -------------------------------------------------------------------------------- /tests/advanced/osu-nix-pr-20-607-0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/advanced/osu-nix-pr-20-607-0.diff -------------------------------------------------------------------------------- /tests/custom-system/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/custom-system/configuration.nix -------------------------------------------------------------------------------- /tests/custom-system/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/custom-system/flake.lock -------------------------------------------------------------------------------- /tests/custom-system/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/custom-system/flake.nix -------------------------------------------------------------------------------- /tests/custom-system/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/custom-system/hardware-configuration.nix -------------------------------------------------------------------------------- /tests/file-rename-fetchpatch/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/file-rename-fetchpatch/configuration.nix -------------------------------------------------------------------------------- /tests/file-rename-fetchpatch/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/file-rename-fetchpatch/flake.lock -------------------------------------------------------------------------------- /tests/file-rename-fetchpatch/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/file-rename-fetchpatch/flake.nix -------------------------------------------------------------------------------- /tests/file-rename-fetchpatch/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/file-rename-fetchpatch/hardware-configuration.nix -------------------------------------------------------------------------------- /tests/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/lib.nix -------------------------------------------------------------------------------- /tests/patch-nixpkgs/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/patch-nixpkgs/flake.lock -------------------------------------------------------------------------------- /tests/patch-nixpkgs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/patch-nixpkgs/flake.nix -------------------------------------------------------------------------------- /tests/run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/run-all.sh -------------------------------------------------------------------------------- /tests/simple/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/simple/configuration.nix -------------------------------------------------------------------------------- /tests/simple/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/simple/flake.lock -------------------------------------------------------------------------------- /tests/simple/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/simple/flake.nix -------------------------------------------------------------------------------- /tests/simple/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gepbird/nixpkgs-patcher/HEAD/tests/simple/hardware-configuration.nix --------------------------------------------------------------------------------