fix(home): Force use of lix

Without forcing lix, this fails on non-NixOS systems which we are using
home-manager to manage. As we are using this version of lix globally for
NixOS systems, this doesn't impact those systems at all.

Change-Id: Ifb496241eab315f3c3bbe0521979834a5131b1dc
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/771
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/modules/home/lix/default.nix b/modules/home/lix/default.nix
index a02982e..c2beac8 100644
--- a/modules/home/lix/default.nix
+++ b/modules/home/lix/default.nix
@@ -1,4 +1,4 @@
 { inputs, system, lib, ... }:
 {
-  nix.package = lib.mkDefault inputs.lix-module.packages.${system}.default; # Snowfall will override default nix.package by system nix if running on a nixos system
+  nix.package = lib.mkForce inputs.lix-module.packages.${system}.default; # Snowfall will override default nix.package by system nix if running on a nixos system
 }