├── .github └── workflows │ └── sync.yml ├── .gitignore ├── LICENSE ├── README.md ├── checks.nix ├── ci.nix ├── ci.sh ├── default.nix ├── flake.lock ├── flake.lock.nix ├── flake.nix ├── renovate.json ├── sync.sh └── templates ├── default └── flake.nix └── dev-shell ├── .envrc └── flake.nix /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /eval.json 2 | /gc-root 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/README.md -------------------------------------------------------------------------------- /checks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/checks.nix -------------------------------------------------------------------------------- /ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/ci.nix -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/ci.sh -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.lock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/flake.lock.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/flake.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/renovate.json -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/sync.sh -------------------------------------------------------------------------------- /templates/default/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/templates/default/flake.nix -------------------------------------------------------------------------------- /templates/dev-shell/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /templates/dev-shell/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nixpkgs-unfree/HEAD/templates/dev-shell/flake.nix --------------------------------------------------------------------------------