.files/nix/nixosModules/common/system-nixconf.nix
Léana 江 ebf8468807
tree-wide: format with nixfmt
Another saturday another useless formatter change.
It's my dotfiles, after all

alejandra doesn't handle c-style inline comments well.
2025-11-08 10:15:58 +08:00

22 lines
405 B
Nix

{
lib,
pkgs,
...
}:
{
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
extra-substituters = [
"https://nix-community.cachix.org"
];
extra-trusted-substituters = [
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
};
}