summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-06-09 11:38:30 +0200
committerRobert Hensing <robert@roberthensing.nl>2022-07-10 13:35:54 +0200
commit82378f9c0ca67445e915fab1af5f14b0327019e6 (patch)
tree4c4b3351bf124ac7efe934b4e0730f7d2e464148 /flake.nix
parent62314ccc17684bcc9310f3b380cffe15bae177d6 (diff)
flake.nix: Format
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix26
1 files changed, 14 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index f78c751287317..67ecfc6eb0841 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,18 +20,20 @@
         nixos = import ./nixos/lib { lib = final; };
 
         nixosSystem = args:
-          import ./nixos/lib/eval-config.nix (args // {
-            modules = args.modules ++ [ {
-              system.nixos.versionSuffix =
-                ".${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.
-            # We set it to null, to remove the "legacy" entrypoint's
-            # non-hermetic default.
-            system = null;
-          });
+          import ./nixos/lib/eval-config.nix (
+            args // {
+              modules = args.modules ++ [{
+                system.nixos.versionSuffix =
+                  ".${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.
+              # We set it to null, to remove the "legacy" entrypoint's
+              # non-hermetic default.
+              system = null;
+            }
+          );
       });
 
       checks.x86_64-linux.tarball = jobs.tarball;