Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Jan 10, 2025
1 parent 20cf18b commit 545c94a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion iso/gpu.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,28 @@
virtualisation.vmware.guest.enable = pkgs.stdenv.hostPlatform.isx86;
virtualisation.hypervGuest.enable = true;
services.xe-guest-utilities.enable = pkgs.stdenv.hostPlatform.isx86;
virtualisation.virtualbox.guest.enable = true;

# Enable plymouth
boot.plymouth.enable = true;

environment.defaultPackages = with pkgs; [
weston
];

services.xserver.displayManager.gdm = {
enable = true;
# autoSuspend makes the machine automatically suspend after inactivity.
# It's possible someone could/try to ssh'd into the machine and obviously
# have issues because it's inactive.
# See:
# * https://github.com/NixOS/nixpkgs/pull/63790
# * https://gitlab.gnome.org/GNOME/gnome-control-center/issues/22
autoSuspend = false;
};
services.displayManager.autoLogin = {
enable = true;
user = "nixos";
};
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
Expand Down

0 comments on commit 545c94a

Please sign in to comment.