From 4f25b207d4cf81fe94613abe05fa7a86b5727935 Mon Sep 17 00:00:00 2001 From: Tyler Kelley Date: Wed, 3 Apr 2024 16:45:49 -0500 Subject: [PATCH] Add ZaneyOS version to Neofetch and environment variables --- config/home/neofetch.nix | 2 +- system.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/home/neofetch.nix b/config/home/neofetch.nix index 8904aef..e135c34 100644 --- a/config/home/neofetch.nix +++ b/config/home/neofetch.nix @@ -3,7 +3,7 @@ { home.file.".config/neofetch/config.conf".text = '' print_info() { - prin "$(color 6) ZaneyOS " + prin "$(color 6) ZaneyOS $ZANEYOS_VERSION" info underline info "$(color 7) VER" kernel info "$(color 2) UP " uptime diff --git a/system.nix b/system.nix index 4359b3e..1279810 100644 --- a/system.nix +++ b/system.nix @@ -54,6 +54,7 @@ in { environment.variables = { FLAKE = "${flakeDir}"; + ZANEYOS_VERSION="1.0"; POLKIT_BIN = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; };