fix: sort and doc

This commit is contained in:
Ranomier 2025-06-08 23:11:43 +02:00
parent 5618c615f3
commit 71487763a6

View file

@ -3,10 +3,11 @@
# Main nix package repository # Main nix package repository
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
home-manager = { # NixOS unstable
url = "github:nix-community/home-manager/release-24.11"; nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.nixpkgs.follows = "nixpkgs";
}; # ready made hardware configurations. e.G.: Power saving
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# generating filesystems in different formats # generating filesystems in different formats
nixos-generators = { nixos-generators = {
@ -14,11 +15,11 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# NixOS unstable channel # additional user specific nix modules
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable"; home-manager = {
url = "github:nix-community/home-manager/release-24.11";
# ready made hardware configurations. e.G.: Power saving inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; };
# for managing flatpaks, like which ones are installed and which not # for managing flatpaks, like which ones are installed and which not
nix-flatpak.url = "github:gmodena/nix-flatpak"; nix-flatpak.url = "github:gmodena/nix-flatpak";