nixpkgs/config.nix: fmt

This commit is contained in:
leo 2023-06-06 16:25:15 +02:00
parent ef8db72aa5
commit f243609f9e
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -1,5 +1,6 @@
{
pkgs = import <personal> { };
# pkgs = import <personal> {};
pkgs = import <nixpkgs> {};
# 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
'';
}