about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--sys/default.nix7
-rw-r--r--sys/git_revision/default.nix8
2 files changed, 12 insertions, 3 deletions
diff --git a/sys/default.nix b/sys/default.nix
index e72b300a..68a24892 100644
--- a/sys/default.nix
+++ b/sys/default.nix
@@ -1,15 +1,16 @@
 {lib, ...}: {
   imports = [
+    #./nixpkgs already at flake level imported
     ./boot
     ./disks
     ./documentation
     ./font
+    ./git_revision
     ./hardware
     ./impermanence
     ./libvirtd
     ./locale
     ./network
-    #./nixpkgs already at flake level imported
     ./options
     ./polkit
     ./power
@@ -17,10 +18,10 @@
     ./sound
     ./svcs
     ./tempfiles
-    ./users # the position of this item is fully arbitrary
+    ./users
     ./waydroid
   ];
-  # remove all the bloat, which nixos installs by default
+  # remove all the bloat, which NixOS installs by default
   environment = {
     defaultPackages = lib.mkForce [];
   };
diff --git a/sys/git_revision/default.nix b/sys/git_revision/default.nix
new file mode 100644
index 00000000..d9388bfa
--- /dev/null
+++ b/sys/git_revision/default.nix
@@ -0,0 +1,8 @@
+{self, ...}: {
+  environment.etc.nixos_git_rev = {
+    text = builtins.toString (self.shortRev
+      or self.dirtyShortRev
+      or self.lastModified
+      or "unknown");
+  };
+}