aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-02-23 18:20:02 +0100
committerSoispha <soispha@vhack.eu>2024-02-23 18:20:02 +0100
commit1fd3abb79f7e2f523b6c1714a03025dea912a12f (patch)
tree2b54b7303d5bc770178c6b0e6cf86eb5d4ecf05c
parentchore(version): v1.30.0 (diff)
downloadnixos-config-1fd3abb79f7e2f523b6c1714a03025dea912a12f.zip
feat(sys/nixos_git_rev): Add a file with the current git reverence
Diffstat (limited to '')
-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");
+ };
+}