Try to get screen settings to work
This commit is contained in:
parent
47547b9367
commit
ab832da3d3
1 changed files with 43 additions and 3 deletions
|
@ -24,17 +24,57 @@ with lib; {
|
|||
xserver = {
|
||||
enable = true;
|
||||
layout = "de";
|
||||
# dpi = 180;
|
||||
libinput.enable = true;
|
||||
modules = [pkgs.xf86_input_wacom];
|
||||
wacom.enable = true;
|
||||
windowManager.awesome.enable = true;
|
||||
screenSection = ''
|
||||
Option "metamodes" "DP-4: 2560x1440_144 +1920+0, DP-0: 1920x1080_75 +0+0"
|
||||
'';
|
||||
# deviceSection = ''
|
||||
# Identifier "Device0"
|
||||
# Driver "nvidia"
|
||||
# VendorName "NVIDIA Corporation"
|
||||
# BoardName "NVIDIA GeForce RTX 2070 SUPER"
|
||||
# '';
|
||||
|
||||
# serverLayoutSection = ''
|
||||
# Identifier "Mouse0"
|
||||
# Driver "mouse"
|
||||
# Option "Protocol" "auto"
|
||||
# Option "Device" "/dev/input/mice"
|
||||
# Option "Emulate3Buttons" "no"
|
||||
# Option "ZAxisMapping" "4 5"
|
||||
# '';
|
||||
# monitorSection = ''
|
||||
# Identifier "Monitor0"
|
||||
# VendorName "Unknown"
|
||||
# ModelName "Acer XF270HU"
|
||||
# HorizSync 222.0 - 222.0
|
||||
# VertRefresh 40.0 - 144.0
|
||||
# Option "DPMS"
|
||||
# '';
|
||||
# screenSection = ''
|
||||
# Identifier "Screen0"
|
||||
# Device "Device0"
|
||||
# Monitor "Monitor0"
|
||||
# DefaultDepth 24
|
||||
# Option "Stereo" "0"
|
||||
# Option "nvidiaXineramaInfoOrder" "DFP-5"
|
||||
# Option "metamodes" "DP-4: 2560x1440_144 +1920+0, DP-0: 1920x1080_75 +0+0"
|
||||
# Option "SLI" "Off"
|
||||
# Option "MultiGPU" "Off"
|
||||
# Option "BaseMosaic" "off"
|
||||
# SubSection "Display"
|
||||
# Depth 24
|
||||
# EndSubSection
|
||||
# '';
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users.${vars.user} = {
|
||||
home.file.".wallpapers" = {
|
||||
source = ../../rsc/wallpaper;
|
||||
recursive = true;
|
||||
};
|
||||
home.file.".config/awesome/" = {
|
||||
source = ../../rsc/config/awesome;
|
||||
recursive = true;
|
||||
|
|
Loading…
Reference in a new issue