Use hyprland on desktop Vanguard again instead of gamescope

This commit is contained in:
Evie Litherland-Smith 2023-08-28 09:24:23 +01:00
parent 6079f19322
commit 367180be25
2 changed files with 5 additions and 5 deletions

View file

@ -13,7 +13,7 @@ in
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../gamescope.nix ../hyprland.nix
../../services/${hostName}.nix ../../services/${hostName}.nix
]; ];
@ -29,7 +29,6 @@ in
opengl.driSupport32Bit = true; opengl.driSupport32Bit = true;
steam-hardware.enable = true; steam-hardware.enable = true;
}; };
system.autoUpgrade.enable = false;
environment.systemPackages = with pkgs; [ mesa ]; environment.systemPackages = with pkgs; [ mesa ];
users.users.${user} = userConfig; users.users.${user} = userConfig;

View file

@ -6,13 +6,14 @@ in
{ {
imports = [ imports = [
shellConfig shellConfig
../../home/git ../../home
../../home/ssh
../../home/tui
]; ];
home = { home = {
inherit username homeDirectory; inherit username homeDirectory;
stateVersion = "22.11"; stateVersion = "22.11";
}; };
programs.home-manager.enable = true; programs.home-manager.enable = true;
xdg.configFile."hypr/display.conf".text = ''
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
'';
} }