Sort inputs alphabetically

This commit is contained in:
Andreas Zweili 2024-04-15 09:08:18 +02:00
parent 5b18b97802
commit 441e9d16b1
1 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,6 @@
{
description = "Andreas Zweili's Nixos configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# look here for the hardware options https://github.com/NixOS/nixos-hardware/blob/master/flake.nix#L5
nixos-hardware.url = "github:nixos/nixos-hardware";
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
@ -13,16 +9,20 @@
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# look here for the hardware options https://github.com/NixOS/nixos-hardware/blob/master/flake.nix#L5
nixos-hardware.url = "github:nixos/nixos-hardware";
};
outputs =
inputs@{
self,
agenix,
home-manager,
nixos-hardware,
nixpkgs,
nixpkgs-unstable,
nixos-hardware,
home-manager,
self,
}:
let
mkComputer = import ./lib/mk_computer.nix;