14 lines
155 B
Nix
14 lines
155 B
Nix
|
{
|
||
|
pkgs,
|
||
|
sources,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
nixfmt = pkgs.callPackage "${sources.nixfmt}/default.nix" { };
|
||
|
in
|
||
|
{
|
||
|
environment.systemPackages = [
|
||
|
nixfmt
|
||
|
];
|
||
|
}
|