mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
flake.nix: Format
This commit is contained in:
parent
62314ccc17
commit
82378f9c0c
1 changed files with 14 additions and 12 deletions
26
flake.nix
26
flake.nix
|
@ -20,18 +20,20 @@
|
||||||
nixos = import ./nixos/lib { lib = final; };
|
nixos = import ./nixos/lib { lib = final; };
|
||||||
|
|
||||||
nixosSystem = args:
|
nixosSystem = args:
|
||||||
import ./nixos/lib/eval-config.nix (args // {
|
import ./nixos/lib/eval-config.nix (
|
||||||
modules = args.modules ++ [ {
|
args // {
|
||||||
system.nixos.versionSuffix =
|
modules = args.modules ++ [{
|
||||||
".${final.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}.${self.shortRev or "dirty"}";
|
system.nixos.versionSuffix =
|
||||||
system.nixos.revision = final.mkIf (self ? rev) self.rev;
|
".${final.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}.${self.shortRev or "dirty"}";
|
||||||
} ];
|
system.nixos.revision = final.mkIf (self ? rev) self.rev;
|
||||||
} // lib.optionalAttrs (! args?system) {
|
}];
|
||||||
# Allow system to be set modularly in nixpkgs.system.
|
} // lib.optionalAttrs (! args?system) {
|
||||||
# We set it to null, to remove the "legacy" entrypoint's
|
# Allow system to be set modularly in nixpkgs.system.
|
||||||
# non-hermetic default.
|
# We set it to null, to remove the "legacy" entrypoint's
|
||||||
system = null;
|
# non-hermetic default.
|
||||||
});
|
system = null;
|
||||||
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
checks.x86_64-linux.tarball = jobs.tarball;
|
checks.x86_64-linux.tarball = jobs.tarball;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue