mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
18 lines
635 B
Nix
18 lines
635 B
Nix
{
|
|
description = "private inputs";
|
|
|
|
inputs.nixpkgs-stable.url = "git+https://github.com/NixOS/nixpkgs?shallow=1&ref=nixos-25.05";
|
|
|
|
inputs.nixpkgs-unstable.url = "git+https://github.com/NixOS/nixpkgs?shallow=1&ref=nixpkgs-unstable";
|
|
|
|
inputs.treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
inputs.treefmt-nix.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
inputs.nix-darwin.url = "github:LnL7/nix-darwin";
|
|
inputs.nix-darwin.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
inputs.home-manager.url = "github:nix-community/home-manager";
|
|
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
outputs = _: { };
|
|
}
|