mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
23 lines
566 B
Nix
23 lines
566 B
Nix
{
|
|
description = "nixos and macos configurations";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
|
nixpkgs-latest.url = "github:NixOS/nixpkgs/master";
|
|
|
|
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
nix-ld.url = "github:Mic92/nix-ld";
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
|
|
|
darwin = {
|
|
url = "github:lnl7/nix-darwin";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {...} @ args: import ./outputs.nix args;
|
|
}
|