mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-16 20:55:06 +01:00
a
This commit is contained in:
parent
c9ea4cccd9
commit
777de7677e
3 changed files with 38 additions and 13 deletions
|
|
@ -77,7 +77,14 @@
|
|||
|
||||
# Enable the GNOME Desktop Environment.
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
desktopManager.gnome = {
|
||||
enable = true;
|
||||
extraGSettingsOverrides = ''
|
||||
[org.gnome.mutter]
|
||||
experimental-features=['scale-monitor-framebuffer']
|
||||
'';
|
||||
extraGSettingsOverridePackages = [ pkgs.gnome.mutter ];
|
||||
};
|
||||
|
||||
# Configure keymap in X11
|
||||
layout = "ch";
|
||||
|
|
@ -85,6 +92,14 @@
|
|||
|
||||
# ndivia drivers
|
||||
videoDrivers = [ "nvidia" ];
|
||||
|
||||
# mouse settings
|
||||
# https://unix.stackexchange.com/questions/58900/how-to-scroll-the-screen-using-the-middle-click
|
||||
#libinput.mouse = {
|
||||
# scrollMethod = "button";
|
||||
# # 2=middle mouse button
|
||||
# scrollButton = 2;
|
||||
#};
|
||||
};
|
||||
|
||||
hardware.opengl.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue