From 573b8ae6392f90faffb547ca5cc1d51eec82a671 Mon Sep 17 00:00:00 2001 From: surtur Date: Wed, 20 Apr 2022 16:00:56 +0200 Subject: [PATCH] config.nix: format using nixfmt --- .config/nixpkgs/config.nix | 51 +++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/.config/nixpkgs/config.nix b/.config/nixpkgs/config.nix index 3ff88af..938d7af 100644 --- a/.config/nixpkgs/config.nix +++ b/.config/nixpkgs/config.nix @@ -3,33 +3,34 @@ # https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management # https://github.com/g-w1/nix-configs/blob/main/home.nix - packageOverrides = pkgs: with pkgs; { - myPackages = pkgs.buildEnv { - name = "my-packages"; - paths = [ - aerc - b3sum - cpplint + packageOverrides = pkgs: + with pkgs; { + myPackages = pkgs.buildEnv { + name = "my-packages"; + paths = [ + aerc + b3sum + cpplint - cachix - hydra-check - nixops - nix-update - nix-diff - niff - nox - nix-du - nixfmt - statix + cachix + hydra-check + nixops + nix-update + nix-diff + niff + nox + nix-du + nixfmt + statix - elvish - silver-searcher - starship - ttyper + elvish + silver-searcher + starship + ttyper - nerdfonts - ]; - pathsToLink = [ "/share" "/bin" "/etc" ]; + nerdfonts + ]; + pathsToLink = [ "/share" "/bin" "/etc" ]; + }; }; - }; }