From c5d26eee942d1a760c81aae997ea436b921ac16c Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 21 Jan 2025 15:58:02 +0300 Subject: [PATCH] alphabetical order of flake inputs --- flake.nix | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/flake.nix b/flake.nix index 48fea12..8d8a15e 100644 --- a/flake.nix +++ b/flake.nix @@ -10,24 +10,22 @@ }; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - - vscode-server.url = "github:nix-community/nixos-vscode-server"; - vscode-server.inputs.nixpkgs.follows = "nixpkgs"; - agenix.url = "github:ryantm/agenix"; - - home-manager.url = "github:nix-community/home-manager"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; - + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; osbm-nvim.url = "github:osbm/osbm-nvim"; - raspberry-pi-nix = { url = "github:nix-community/raspberry-pi-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; - - nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + vscode-server = { + url = "github:nix-community/nixos-vscode-server"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = {