28 lines
823 B
Nix
28 lines
823 B
Nix
{
|
|
inputs = {
|
|
# Main nix package repository
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-24.11";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# generating filesystems in different formats
|
|
nixos-generators = {
|
|
url = "github:nix-community/nixos-generators";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# NixOS unstable channel
|
|
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
# ready made hardware configurations. e.G.: Power saving
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
# for managing flatpaks, like which ones are installed and which not
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
|
};
|
|
|
|
outputs = {...}@inArgs: import ./outputs.nix inArgs;
|
|
}
|