From f243609f9ece460b86919efd312a0e4a31903d56 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 6 Jun 2023 16:25:15 +0200 Subject: [PATCH] nixpkgs/config.nix: fmt --- .config/nixpkgs/config.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.config/nixpkgs/config.nix b/.config/nixpkgs/config.nix index 7049b14..a9324bc 100644 --- a/.config/nixpkgs/config.nix +++ b/.config/nixpkgs/config.nix @@ -1,5 +1,6 @@ { - pkgs = import { }; + # pkgs = import {}; + pkgs = import {}; # https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management # https://github.com/g-w1/nix-configs/blob/main/home.nix @@ -30,13 +31,13 @@ nerdfonts ]; - pathsToLink = [ "/share" "/bin" "/etc" ]; + pathsToLink = ["/share" "/bin" "/etc"]; }; }; - nix.distributedBuilds = true; - # useful when the builder has a faster internet connection than yours - nix.extraOptions = '' - builders-use-substitutes = true - ''; + nix.distributedBuilds = true; + # useful when the builder has a faster internet connection than yours + nix.extraOptions = '' + builders-use-substitutes = true + ''; }