From 441e9d16b177a7b047d6e428b667d65a23e711b4 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 15 Apr 2024 09:08:18 +0200 Subject: [PATCH] Sort inputs alphabetically --- flake.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 71d675c..de5a102 100644 --- a/flake.nix +++ b/flake.nix @@ -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;