mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
X11 changed cursor size
This commit is contained in:
parent
a2d0e27ea0
commit
29f65513a7
@ -1,6 +1,7 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
isgraphical = config.variables.graphical;
|
||||
cursorsize = if config.variables.hostName == "nucturne" then 14 else 16;
|
||||
in
|
||||
{
|
||||
networking.networkmanager.enable = isgraphical;
|
||||
@ -8,7 +9,10 @@ in
|
||||
services = {
|
||||
xserver = {
|
||||
enable = isgraphical;
|
||||
displayManager.lightdm.enable = isgraphical;
|
||||
displayManager.lightdm = {
|
||||
enable = isgraphical;
|
||||
greeters.gtk.cursorTheme.size = cursorsize;
|
||||
};
|
||||
windowManager.i3 = {
|
||||
enable = isgraphical;
|
||||
extraPackages = with pkgs; [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user