diff --git a/machines/homepc/home.nix b/machines/homepc/home.nix index c4c9345..9fbe19c 100755 --- a/machines/homepc/home.nix +++ b/machines/homepc/home.nix @@ -1,4 +1,11 @@ -{config, pkgs, lib, inputs, outputs, ...}: +{ + config, + pkgs, + lib, + inputs, + outputs, + ... +}: { # These both are probably always going to be the same, but I'll keep them local just in case:tm: home.username = "laythe"; @@ -11,4 +18,6 @@ home.stateVersion = "24.11"; programs.home-manager.enable = true; -} \ No newline at end of file + + fonts.fontconfig.subpixelRendering = "none"; +} diff --git a/modules/virtualization/default.nix b/modules/virtualization/default.nix index 7d64261..f7c826c 100755 --- a/modules/virtualization/default.nix +++ b/modules/virtualization/default.nix @@ -14,6 +14,5 @@ virtualisation.podman = { enable = true; dockerCompat = true; - enableNvidia = true; }; }