From 7d56fbed00727d08593ba2d145641612e36eb119 Mon Sep 17 00:00:00 2001
From: Alex Davies <traverse.da@gmail.com>
Date: Fri, 24 May 2024 13:04:13 -0300
Subject: [PATCH] Renamed work computer hostname

---
 flake.nix                                   |  4 +--
 hostnames.md                                | 30 +++++++++++++++++++++
 nixos/configuration.nix                     |  5 ++++
 nixos/hardware/{metatron.nix => azrael.nix} |  0
 4 files changed, 37 insertions(+), 2 deletions(-)
 create mode 100644 hostnames.md
 rename nixos/hardware/{metatron.nix => azrael.nix} (100%)

diff --git a/flake.nix b/flake.nix
index 7e3e92b..15554db 100644
--- a/flake.nix
+++ b/flake.nix
@@ -78,10 +78,10 @@
         ];
       };
       #Work laptop, dell g15.
-      metatron = nixpkgs.lib.nixosSystem {
+      azrael = nixpkgs.lib.nixosSystem {
         specialArgs = {
           inherit inputs outputs;
-          hostname = "metatron";
+          hostname = "azrael";
         };
         modules = [
           ./nixos/configuration.nix
diff --git a/hostnames.md b/hostnames.md
new file mode 100644
index 0000000..a8c2ab2
--- /dev/null
+++ b/hostnames.md
@@ -0,0 +1,30 @@
+Raphael
+Gabriel
+Michael
+Uriel
+#Azrael
+Ariel
+Cassiel
+Jophiel
+Zadkiel
+Raziel
+Raguel
+Chamuel
+Haniel
+Jeremiel
+#Metatron
+Sandalphon
+Sariel
+Selaphiel
+Barachiel
+Zaphkiel
+Gadreel
+Remiel
+Anael
+Raguel
+Samael
+Raziel
+Tzaphkiel
+Tzadkiel
+Sachiel
+Adriel
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 0e193ba..eb1ceaf 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -87,6 +87,11 @@
      appimage-run
   ];
 
+  programs.git = {
+    enable = true;
+    lfs.enable = true;
+  };
+
   boot.binfmt.registrations.appimage = {
     wrapInterpreterInShell = false;
     interpreter = "${pkgs.appimage-run}/bin/appimage-run";
diff --git a/nixos/hardware/metatron.nix b/nixos/hardware/azrael.nix
similarity index 100%
rename from nixos/hardware/metatron.nix
rename to nixos/hardware/azrael.nix