mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
added default window offsets
This commit is contained in:
parent
90eadd92b2
commit
8ac7378eba
1 changed files with 8 additions and 1 deletions
|
@ -33,7 +33,14 @@
|
||||||
systemd.services.sshd.wantedBy = [ "multi-user.target" ];
|
systemd.services.sshd.wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
|
||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver = {
|
||||||
|
videoDrivers = [ "nvidia" ];
|
||||||
|
# xrandr for screen information. <connection>: <resolution> <offset>, <next connection>
|
||||||
|
# Option "nvidiaXineramaInfoOrder" "DFP-0"
|
||||||
|
screenSection = ''
|
||||||
|
Option "metamodes" "DP-2: 2560x1440 +1920+0, DP-4: 1920x1080 +0+360"
|
||||||
|
'';
|
||||||
|
};
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
||||||
|
|
Loading…
Reference in a new issue