mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
nixfmt changes
This commit is contained in:
parent
36176f647c
commit
f25c8638ee
36 changed files with 133 additions and 135 deletions
|
|
@ -51,20 +51,20 @@ rec {
|
|||
|
||||
gerg-utils =
|
||||
config: outputs:
|
||||
lib.foldAttrs lib.mergeAttrs { } (
|
||||
lib.foldAttrs lib.mergeAttrs {} (
|
||||
map
|
||||
(
|
||||
system:
|
||||
let
|
||||
pkgs =
|
||||
if config == { } then
|
||||
if config == {} then
|
||||
unstable.legacyPackages.${system}
|
||||
else
|
||||
import unstable { inherit system config; };
|
||||
import unstable {inherit system config;};
|
||||
in
|
||||
lib.mapAttrs (name: value: if needsSystem name then { ${system} = value pkgs; } else value) outputs
|
||||
lib.mapAttrs (name: value: if needsSystem name then {${system} = value pkgs;} else value) outputs
|
||||
)
|
||||
[ "x86_64-linux" ]
|
||||
["x86_64-linux"]
|
||||
);
|
||||
|
||||
mkHosts =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue