feat(shorthair): Add qemu utilities, add fbc

Change-Id: I0f001997cd453604486fad137ceff62f019286b8
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/886
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/homes/x86_64-linux/coded@shorthair/default.nix b/homes/x86_64-linux/coded@shorthair/default.nix
index 653983f..c3e8238 100644
--- a/homes/x86_64-linux/coded@shorthair/default.nix
+++ b/homes/x86_64-linux/coded@shorthair/default.nix
@@ -21,7 +21,7 @@
 {
   chimera.users.coded.enable = true;
 
-  chimera.waybar.modules.temperature.hwmonPath = "/sys/class/hwmon/hwmon4/temp1_input";
+  chimera.waybar.enable = lib.mkForce false;
 
   chimera.niri = {
     enable = true;
@@ -99,4 +99,6 @@
       };
     };
   };
+
+  home.packages = [ pkgs.amdgpu_top pkgs.bottles ];
 }
diff --git a/modules/home/users/coded/default.nix b/modules/home/users/coded/default.nix
index efbe93a..6f3bd0b 100644
--- a/modules/home/users/coded/default.nix
+++ b/modules/home/users/coded/default.nix
@@ -166,6 +166,16 @@
         user.email = "coded@clicks.codes"
         '';
       };
+      "Programming/FreshlyBaked/README.md" = {
+        text = ''
+        # What is this directory for?
+        This directory stores all FreshlyBaked related programming projects
+
+        # Git config modifications
+        user.name = "Samuel Shuert"
+        user.email = "coded@freshlybakedca.ke"
+        '';
+      };
     };
 
     # Git Config
@@ -202,6 +212,14 @@
           user.email = "me@thecoded.prof";
         };
       }
+      {
+        condition = "gitdir:~/Programming/FreshlyBaked/**";
+
+        contents = {
+          user.name = "Samuel Shuert";
+          user.email = "coded@freshlybakedca.ke";
+        };
+      }
     ];
 
     programs.git.extraConfig.user = {
diff --git a/systems/x86_64-linux/shorthair/virtualisation/default.nix b/systems/x86_64-linux/shorthair/virtualisation/default.nix
new file mode 100644
index 0000000..3c7650d
--- /dev/null
+++ b/systems/x86_64-linux/shorthair/virtualisation/default.nix
@@ -0,0 +1,4 @@
+{ pkgs, ... }: {
+  virtualisation.spiceUSBRedirection.enable = true;
+  environment.systemPackages = [ pkgs.quickemu pkgs.spice-gtk ];
+}