diff --git a/home/nomad/unkown.nix b/home/nomad/unkown.nix index 64a7958..f828a61 100644 --- a/home/nomad/unkown.nix +++ b/home/nomad/unkown.nix @@ -41,7 +41,7 @@ } ]; monitor = [ - "eDP-1,2560x1600@60,0x0,1.25" + "eDP-1,1920x1080@60,0x0,1" "DP-2,1920x1080@60,auto,1" ]; diff --git a/install.sh b/install.sh index 4e43329..3e4bed1 100755 --- a/install.sh +++ b/install.sh @@ -82,6 +82,10 @@ sed -i "s/services.flatpak.enable = .*/services.flatpak.enable = $flatpak_respon vm_response=$(ask_yes_no "Do you want vm and virtmanager to be enabled") sed -i "s/common.services.vm.enable = .*/common.services.vm.enable = $vm_response;/" "$config_file" +echo -e "$YELLOW Recommended to not enable vfio unless you know what you are doing $ENDCOLOR" +vfio_response=$(ask_yes_no "Do you want GPU-Passthrough to be enabled") +sed -i "s/common.services.vfio.enable = .*/common.services.vfio.enable = $vfio_response;/" "$config_file" + # Notify the user that the changes are complete echo -e "$GREEN Configuration has been updated with your preferences $ENDCOLOR"