From beff7ad8a4f67016480a51e7cae53567ce636828 Mon Sep 17 00:00:00 2001 From: reo101 Date: Tue, 25 Jul 2023 10:29:36 +0300 Subject: [PATCH] chore(flake): format --- flake.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 1a64dd1..0252b74 100644 --- a/flake.nix +++ b/flake.nix @@ -68,6 +68,7 @@ , nix-on-droid , nix-darwin , home-manager + , nur , hardware , nix-colors , neovim-nightly-overlay @@ -79,7 +80,8 @@ let inherit (self) outputs; util = import ./util { inherit inputs outputs; }; - in rec { + in + rec { # Packages (`nix build`) packages = util.forEachPkgs (pkgs: import ./pkgs { inherit pkgs; } @@ -101,10 +103,14 @@ ); # Templates - templates = import ./templates { inherit inputs outputs; }; + templates = import ./templates { + inherit inputs outputs; + }; # Overlays - overlays = import ./overlays { inherit inputs outputs; }; + overlays = import ./overlays { + inherit inputs outputs; + }; # Machines inherit (util)