From c7cc18a5b449d2fbe95f61d917c278cb153449b0 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Tue, 19 Mar 2024 13:55:19 +0100 Subject: [PATCH] Update formatting. --- flake.nix | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index 80b5453..535ad45 100644 --- a/flake.nix +++ b/flake.nix @@ -1,16 +1,13 @@ { - description = "hb-downloader"; - inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - }; + description = "hb-downloader"; + inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; - outputs = { self, nixpkgs, ... }: - let - system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; - in - { - devShells.x86_64-linux.default = ( import ./shell.nix { inherit pkgs; }); - packages.x86_64-linux.default = ( import ./default.nix { inherit pkgs; }); - }; + outputs = { self, nixpkgs, ... }: + let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in { + devShells.x86_64-linux.default = (import ./shell.nix { inherit pkgs; }); + packages.x86_64-linux.default = (import ./default.nix { inherit pkgs; }); + }; }