Move steam config into Vanguard.nix, disable sddm
This commit is contained in:
parent
0dd2486013
commit
5f5c3467eb
13
Vanguard.nix
13
Vanguard.nix
|
@ -5,9 +5,7 @@
|
||||||
./hardware/audio.nix
|
./hardware/audio.nix
|
||||||
./hardware/bluetooth.nix
|
./hardware/bluetooth.nix
|
||||||
./locales/en_GB.nix
|
./locales/en_GB.nix
|
||||||
./desktop/sddm.nix
|
|
||||||
./desktop/hyprland.nix
|
./desktop/hyprland.nix
|
||||||
./desktop/steam.nix
|
|
||||||
./syncthing/Vanguard.nix
|
./syncthing/Vanguard.nix
|
||||||
./server/sshd.nix
|
./server/sshd.nix
|
||||||
./server/adguardhome.nix
|
./server/adguardhome.nix
|
||||||
|
@ -23,7 +21,6 @@
|
||||||
allowedTCPPorts = [22];
|
allowedTCPPorts = [22];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xserver.displayManager.defaultSession = "hyprland";
|
|
||||||
users.users.xenia = {
|
users.users.xenia = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Evie Litherland-Smith";
|
description = "Evie Litherland-Smith";
|
||||||
|
@ -38,6 +35,16 @@
|
||||||
home-manager.users.root = import ./home/Vanguard/root.nix;
|
home-manager.users.root = import ./home/Vanguard/root.nix;
|
||||||
home-manager.users.xenia = import ./home/Vanguard/xenia.nix;
|
home-manager.users.xenia = import ./home/Vanguard/xenia.nix;
|
||||||
|
|
||||||
|
# Enable steam with proper integrations
|
||||||
|
environment.systemPackages = [pkgs.mesa];
|
||||||
|
programs.gamescope.enable = true;
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
remotePlay.openFirewall = true;
|
||||||
|
};
|
||||||
|
hardware.steam-hardware.enable = true;
|
||||||
|
hardware.opengl.driSupport32Bit = true;
|
||||||
|
|
||||||
# Extra hardware configuration
|
# Extra hardware configuration
|
||||||
hardware.openrazer = {
|
hardware.openrazer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
environment.systemPackages = [pkgs.mesa];
|
|
||||||
programs.gamescope.enable = true;
|
|
||||||
programs.steam = {
|
|
||||||
enable = true;
|
|
||||||
remotePlay.openFirewall = true;
|
|
||||||
gamescopeSession.enable = true;
|
|
||||||
};
|
|
||||||
hardware.steam-hardware.enable = true;
|
|
||||||
hardware.opengl.driSupport32Bit = true;
|
|
||||||
}
|
|
Loading…
Reference in a new issue