More than a week trying to run any DE or WM on my i686 old notebook. Can someone help me, please?

I’m loving NixOS. But so far I’ve only tried to solve things for the system to try to run on my machine in graphical mode. Remembering the time when I came across Linux for the first time.
So far the closest I’ve come has been seeing the mouse pointer on the screen when running the sway. But it also locked the keyboard, being necessary to send the command to shut down by the notebook’s power button.
Here are some settings for those who want and can help me. It should serve to identify the reason for not running any graphics mode.

Specifications of my old-laptop:

System:    Host: nixos Kernel: 4.19.97 i686 bits: 32 Console: tty 1 Distro: NixOS 19.09.1914.d14cea0dec2 (Loris) 
Machine:   Type: Laptop System: TOSHIBA product: Satellite P105 v: PSPA0U-02S01M serial: <root required> 
           Mobo: TOSHIBA model: Satellite P105 serial: <root required> BIOS: TOSHIBA v: 4.70 date: 01/19/20092 
Battery:   ID-1: BAT1 charge: 8.3 Wh condition: 8.3/44.4 Wh (19%) 
CPU:       Topology: Dual Core model: Intel T2050 bits: 32 type: MCP L2 cache: 2048 KiB 
           Speed: 800 MHz min/max: 800/1600 MHz Core speeds (MHz): 1: 800 2: 814 
Graphics:  Message: No Device data found. 
           Display: server: X.org 1.20.5 driver: tty: 180x56 
           Message: Unable to show advanced data. Required tool glxinfo missing. 
Audio:     Device-1: HDA Intel driver: HDA-Intel 
           Sound Server: ALSA v: k4.19.97 
Network:   Message: No Device data found. 
           IF-ID-1: enp10s8 state: up speed: 100 Mbps duplex: full mac: 00:16:36:6b:29:63 
           IF-ID-2: wlp3s0 state: down mac: 00:13:02:bd:34:c1 
Drives:    Local Storage: total: 298.09 GiB used: 6.80 GiB (2.3%) 
           ID-1: /dev/sda vendor: Toshiba model: MK3259GSXP size: 298.09 GiB 
Partition: ID-1: / size: 284.54 GiB used: 6.80 GiB (2.4%) fs: ext4 dev: /dev/sda1 
           ID-2: swap-1 size: 8.00 GiB used: 0 KiB (0.0%) fs: swap dev: /dev/sda2 
Sensors:   Missing: Required tool sensors not installed. Check --recommends 
Info:      Processes: 74 Uptime: 06:28:17  up 1 day  7:31,  1 user,  load average: 0.00, 0.08, 0.12 Memory: 2.89 GiB 
           used: 150.5 MiB (5.1%) Init: systemd Shell: bash inxi: 3.0.36 

My configuration.nix file:

# Edit this configuration file to define what should be installed on
# your system.  Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).

{ config, pkgs, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      ./hardware-configuration.nix
    ];

  # Use the GRUB 2 boot loader.
  boot.loader.grub = {
      enable = true;
      version = 2;
      device = "/dev/sda";
  };

  networking = {
      hostName = "nixos"; # Define your hostname.
      wireless.enable = true;  # Enables wireless support via wpa_supplicant.
    # The global useDHCP flag is deprecated, therefore explicitly set to false here.
    # Per-interface useDHCP will be mandatory in the future, so this generated config
    # replicates the default behaviour.
      useDHCP = false;
  	  interfaces = {
              enp10s8.useDHCP = true;
              wlp3s0.useDHCP = true;
          };
  };

  # Configure network proxy if necessary
  # networking.proxy.default = "http://user:password@proxy:port/";
  # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";

  # Select internationalisation properties.
  i18n = {
      consoleFont = "Lat2-Terminus16";
      consoleKeyMap = "us";
      defaultLocale = "pt_BR.UTF-8";
  };

  # Set your time zone.
  time.timeZone = "America/Porto_Velho";

  # List packages installed in system profile. To search, run:
  # $ nix search wget
  environment.systemPackages = with pkgs; [ 
      wget
      vim 
      rxvt_unicode 
      feh 
      i3lock-fancy 
      keybase-gui
  ];
  
  environment.variables.EDITOR = "vim";

  # Some programs need SUID wrappers, can be configured further or are
  # started in user sessions.
  # programs.mtr.enable = true;
  # programs.gnupg.agent = { enable = true; enableSSHSupport = true; };

  # List services that you want to enable:

  # Enable the OpenSSH daemon.
  # services.openssh.enable = true;

  # Open ports in the firewall.
  # networking.firewall.allowedTCPPorts = [ ... ];
  # networking.firewall.allowedUDPPorts = [ ... ];
  # Or disable the firewall altogether.
  # networking.firewall.enable = false;

  # Enable CUPS to print documents.
  services.printing.enable = true;

  # Enable sound.
  sound.enable = true;
  hardware.pulseaudio.enable = true;

  services.xserver = { # Enable the X11 windowing system.
      enable = true;
      # videoDrivers = ["intel"]; # Enable free video driver.
      layout = "us";
      xkbVariant = "alt-intl";
      xkbOptions = "eurosign:e, grp:alt_shift_toggle";
      # enableCrtlAltBackspace = true;
      desktopManager = {
	   default = "none";
	   xterm.enable = false;
	   # xfce.enable = true;
	   # plasma5.enable = true; # Enable the KDE Desktop Environment
           # gnome3 = {
	       # enable = true;
               # flashback.customSessions = [
  	           # {
                     # wmCommand = "${pkgs.i3}/bin/i3";
                     # wmLabel = "Gnome3 + i3";
                     # wmName = "gnome3-i3";
                   # }
	       # ];
           # };
      };
      displayManager = {
	  startx.enable = true;
	  # slim.enable = true;
	  # lightdm.enable = true;
	  # gdm.enable = true;
	  # gdm.wayland = false;
	  # sddm.enable = true;
          # auto = { # Enable autoboot for LightDM.
             # enable = true;
             # user = "fabiomen10";
          # };
      };
      autorun = false;
      exportConfiguration = true;
      windowManager = {
	  # qtile.enable = true; 
	  default = "i3";
	  i3 = {
	      enable = true;
	      extraPackages = [
	          pkgs.dmenu
		  pkgs.rofi
		  pkgs.i3status
		  pkgs.j4-dmenu-desktop
		  pkgs.slock
		  pkgs.xdotool
	      ];
          };
      };    
    }; 
  
      fonts.fonts = with pkgs; [
          powerline-fonts 
          font-awesome_5 
          source-code-pro
      ];

  services.xserver.libinput = { # Enable touchpad support.
      enable = true;
      tapping = false;
  };

  users.users.fabiomen10 = { # Define a user account. Don't forget to set a password with 'passwd'.
   isNormalUser = true;
   home = "/home/fabiomen10";
   description = "Fabio Mendes";
   extraGroups = ["wheel" "video" "audio" "disk" "networkmanager"]; # Enable ‘sudo’ for the user.
  };
  
  security.sudo = { # Enable passwordless sudo.
    enable = true;
    wheelNeedsPassword = false;
  };

  # This value determines the NixOS release with which your system is to be
  # compatible, to avoid breaking some software such as database
  # servers. You should change this only after NixOS release notes say you
  # should.
  system.stateVersion = "19.09"; # Did you read the comment?

  # Keep NixOS system up-to-date automatically.
  # system.autoUpgrade.enable = true;

}

My Xorg.0.log file generated after run startx:

[ 74685.126] 
X.Org X Server 1.20.5
X Protocol Version 11, Revision 0
[ 74685.132] Build Operating System: Linux 4.19.92 i686 
[ 74685.134] Current Operating System: Linux nixos 4.19.97 #1-NixOS SMP Fri Jan 17 18:47:17 UTC 2020 i686
[ 74685.134] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/nix/store/2pjvl3bqacjm2vlgb0xwz84j03gx1sxp-linux-4.19.97/bzImage systemConfig=/nix/store/q1csq0x21j0c4z06inzsw6334760bzc4-nixos-system-nixos-19.09.1914.d14cea0dec2 init=/nix/store/q1csq0x21j0c4z06inzsw6334760bzc4-nixos-system-nixos-19.09.1914.d14cea0dec2/init loglevel=4
[ 74685.142] Build Date: 30 May 2019  06:28:09PM
[ 74685.145]  
[ 74685.147] Current version of pixman: 0.38.4
[ 74685.152] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 74685.152] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 74685.164] (==) Log file: "/home/fabiomen10/.local/share/xorg/Xorg.0.log", Time: Tue Jan 21 05:38:56 2020
[ 74685.167] (==) Using config file: "/etc/X11/xorg.conf"
[ 74685.170] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 74685.174] (==) Using system config directory "/nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/share/X11/xorg.conf.d"
[ 74685.174] (==) ServerLayout "Layout[all]"
[ 74685.174] (**) |-->Screen "Screen-radeon[0]" (0)
[ 74685.174] (**) |   |-->Monitor "<default monitor>"
[ 74685.175] (**) |   |-->Device "Device-radeon[0]"
[ 74685.175] (==) No monitor specified for screen "Screen-radeon[0]".
	Using a default monitor configuration.
[ 74685.175] (**) |-->Screen "Screen-cirrus[0]" (1)
[ 74685.175] (**) |   |-->Monitor "<default monitor>"
[ 74685.175] (**) |   |-->Device "Device-cirrus[0]"
[ 74685.175] (==) No monitor specified for screen "Screen-cirrus[0]".
	Using a default monitor configuration.
[ 74685.175] (**) |-->Screen "Screen-vesa[0]" (2)
[ 74685.175] (**) |   |-->Monitor "<default monitor>"
[ 74685.176] (**) |   |-->Device "Device-vesa[0]"
[ 74685.176] (==) No monitor specified for screen "Screen-vesa[0]".
	Using a default monitor configuration.
[ 74685.176] (**) |-->Screen "Screen-vmware[0]" (3)
[ 74685.176] (**) |   |-->Monitor "<default monitor>"
[ 74685.176] (**) |   |-->Device "Device-vmware[0]"
[ 74685.176] (==) No monitor specified for screen "Screen-vmware[0]".
	Using a default monitor configuration.
[ 74685.176] (**) |-->Screen "Screen-modesetting[0]" (4)
[ 74685.176] (**) |   |-->Monitor "<default monitor>"
[ 74685.177] (**) |   |-->Device "Device-modesetting[0]"
[ 74685.177] (==) No monitor specified for screen "Screen-modesetting[0]".
	Using a default monitor configuration.
[ 74685.177] (**) Option "DontZap" "on"
[ 74685.177] (**) Option "AllowMouseOpenFail" "on"
[ 74685.177] (==) Automatically adding devices
[ 74685.177] (==) Automatically enabling devices
[ 74685.177] (==) Automatically adding GPU devices
[ 74685.177] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 74685.177] (**) FontPath set to:
	/nix/store/pgq8gi6mr9s17rgfhsph8iayp51955v3-font-bh-lucidatypewriter-100dpi-1.0.3/lib/X11/fonts/100dpi,
	/nix/store/h6rf72mws6zqqahab3lz8wgya6apq517-font-bh-lucidatypewriter-75dpi-1.0.3/lib/X11/fonts/75dpi,
	/nix/store/gxzlypwn18draa9j02wg3knfbzaynacm-font-bh-100dpi-1.0.3/lib/X11/fonts/100dpi,
	/nix/store/l5pbjbmvwsys0z70nksi1fw9m27ra3fk-font-misc-misc-1.1.2/lib/X11/fonts/misc,
	/nix/store/5d5dd5jrwnp2qlrlfj8jsxz0fwp6hab0-font-cursor-misc-1.0.3/lib/X11/fonts/misc,
	/nix/store/nyx1r5a0vnw0s84p8nh1mqcln89rm3rl-unifont-12.1.03/share/fonts,
	/nix/store/lisx7fcf4010iv8s1yyrxx94fyfvmmlp-font-adobe-100dpi-1.0.3/lib/X11/fonts/100dpi,
	/nix/store/951lfryp5ypn75b5dbqwgzcizyjr0sns-font-adobe-75dpi-1.0.3/lib/X11/fonts/75dpi
[ 74685.177] (**) ModulePath set to "/nix/store/kvg7pxb3yx5nn2f652gisgdmx0xcaydi-xf86-video-ati-19.0.1/lib/xorg/modules/drivers,/nix/store/5lfd34gb6zyl34as6f1zpnszpf8fn6g0-xf86-video-cirrus-1.5.3/lib/xorg/modules/drivers,/nix/store/bszlmhcpgg1gfg3ly0zmycli11060ivi-xf86-video-vesa-2.4.0/lib/xorg/modules/drivers,/nix/store/0r5x5qij826q9alw45l153c69wyvdksx-xf86-video-vmware-13.3.0/lib/xorg/modules/drivers,/nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules,/nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/drivers,/nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/extensions,/nix/store/x2qhxq1xv33vqnaa9hhm77sza2v8hs4c-xf86-input-evdev-2.10.6/lib/xorg/modules/input,/nix/store/83fgv1nnh1rg349w6n2dbz09ylbmj1lf-xf86-input-libinput-0.28.2/lib/xorg/modules/input"
[ 74685.177] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 74685.177] (II) Loader magic: 0x82b36c0
[ 74685.177] (II) Module ABI versions:
[ 74685.177] 	X.Org ANSI C Emulation: 0.4
[ 74685.177] 	X.Org Video Driver: 24.0
[ 74685.177] 	X.Org XInput driver : 24.1
[ 74685.177] 	X.Org Server Extension : 10.0
[ 74685.178] (++) using VT number 1

[ 74685.178] (--) controlling tty is VT number 1, auto-enabling KeepTty
[ 74685.182] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 74685.183] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 74685.185] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[ 74685.191] (--) PCI:*(0@0:2:0) 8086:27a2:1179:ff31 rev 3, Mem @ 0xd0200000/524288, 0xc0000000/268435456, 0xd0300000/262144, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
[ 74685.192] (--) PCI: (0@0:2:1) 8086:27a6:1179:ff31 rev 3, Mem @ 0xd0280000/524288
[ 74685.192] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 74685.192] (II) "glx" will be loaded by default.
[ 74685.192] (II) LoadModule: "glx"
[ 74685.192] (II) Loading /nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/extensions/libglx.so
[ 74685.195] (II) Module glx: vendor="X.Org Foundation"
[ 74685.195] 	compiled for 1.20.5, module version = 1.0.0
[ 74685.195] 	ABI class: X.Org Server Extension, version 10.0
[ 74685.195] (II) LoadModule: "ati"
[ 74685.195] (II) Loading /nix/store/kvg7pxb3yx5nn2f652gisgdmx0xcaydi-xf86-video-ati-19.0.1/lib/xorg/modules/drivers/ati_drv.so
[ 74685.195] (II) Module ati: vendor="X.Org Foundation"
[ 74685.195] 	compiled for 1.20.5, module version = 19.0.1
[ 74685.195] 	Module class: X.Org Video Driver
[ 74685.195] 	ABI class: X.Org Video Driver, version 24.0
[ 74685.195] (II) LoadModule: "cirrus"
[ 74685.195] (II) Loading /nix/store/5lfd34gb6zyl34as6f1zpnszpf8fn6g0-xf86-video-cirrus-1.5.3/lib/xorg/modules/drivers/cirrus_drv.so
[ 74685.195] (II) Module cirrus: vendor="X.Org Foundation"
[ 74685.196] 	compiled for 1.20.5, module version = 1.5.3
[ 74685.196] 	Module class: X.Org Video Driver
[ 74685.196] 	ABI class: X.Org Video Driver, version 24.0
[ 74685.196] (II) LoadModule: "vesa"
[ 74685.196] (II) Loading /nix/store/bszlmhcpgg1gfg3ly0zmycli11060ivi-xf86-video-vesa-2.4.0/lib/xorg/modules/drivers/vesa_drv.so
[ 74685.196] (II) Module vesa: vendor="X.Org Foundation"
[ 74685.196] 	compiled for 1.20.5, module version = 2.4.0
[ 74685.196] 	Module class: X.Org Video Driver
[ 74685.196] 	ABI class: X.Org Video Driver, version 24.0
[ 74685.196] (II) LoadModule: "vmware"
[ 74685.196] (II) Loading /nix/store/0r5x5qij826q9alw45l153c69wyvdksx-xf86-video-vmware-13.3.0/lib/xorg/modules/drivers/vmware_drv.so
[ 74685.300] (II) Module vmware: vendor="X.Org Foundation"
[ 74685.300] 	compiled for 1.20.5, module version = 13.3.0
[ 74685.301] 	Module class: X.Org Video Driver
[ 74685.301] 	ABI class: X.Org Video Driver, version 24.0
[ 74685.301] (II) LoadModule: "modesetting"
[ 74685.301] (II) Loading /nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/drivers/modesetting_drv.so
[ 74685.301] (II) Module modesetting: vendor="X.Org Foundation"
[ 74685.301] 	compiled for 1.20.5, module version = 1.20.5
[ 74685.301] 	Module class: X.Org Video Driver
[ 74685.301] 	ABI class: X.Org Video Driver, version 24.0
[ 74685.301] (II) CIRRUS: driver for Cirrus chipsets: CLGD5430, CLGD5434-4, CLGD5434-8,
	CLGD5436, CLGD5446, CLGD5480, CL-GD5462, CL-GD5464, CL-GD5464BD,
	CL-GD5465, CL-GD7548, CL-GD7555, CL-GD7556
[ 74685.302] (II) VESA: driver for VESA chipsets: vesa
[ 74685.302] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
[ 74685.302] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 74685.302] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[ 74685.302] (WW) Falling back to old probe method for cirrus
[ 74685.302] vesa: Ignoring device with a bound kernel driver
[ 74685.302] (II) modeset(1): using drv /dev/dri/card0
[ 74685.302] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 74685.302] (EE) Screen 0 deleted because of no matching config section.
[ 74685.302] (II) UnloadModule: "vesa"
[ 74685.302] (II) modeset(0): Creating default Display subsection in Screen section
	"Screen-modesetting[0]" for depth/fbbpp 24/32
[ 74685.302] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 74685.302] (==) modeset(0): RGB weight 888
[ 74685.302] (==) modeset(0): Default visual is TrueColor
[ 74685.302] (II) Loading sub module "glamoregl"
[ 74685.302] (II) LoadModule: "glamoregl"
[ 74685.303] (II) Loading /nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/libglamoregl.so
[ 74685.312] (II) Module glamoregl: vendor="X.Org Foundation"
[ 74685.312] 	compiled for 1.20.5, module version = 1.0.1
[ 74685.312] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 74685.334] (II) modeset(0): glamor X acceleration enabled on Mesa DRI Intel(R) 945GM x86/MMX/SSE2
[ 74685.335] (II) modeset(0): glamor initialized
[ 74685.335] (II) modeset(0): Output LVDS-1 has no monitor section
[ 74685.347] (II) modeset(0): Output VGA-1 has no monitor section
[ 74685.718] (II) modeset(0): Output SVIDEO-1 has no monitor section
[ 74685.718] (II) modeset(0): EDID for output LVDS-1
[ 74685.718] (II) modeset(0): Manufacturer: APP  Model: 9c2c  Serial#: 0
[ 74685.718] (II) modeset(0): Year: 2003  Week: 1
[ 74685.718] (II) modeset(0): EDID Version: 1.3
[ 74685.718] (II) modeset(0): Digital Display Input
[ 74685.718] (II) modeset(0): Max Image Size [cm]: horiz.: 37  vert.: 23
[ 74685.718] (II) modeset(0): Gamma: 2.20
[ 74685.718] (II) modeset(0): No DPMS capabilities specified
[ 74685.718] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[ 74685.718] (II) modeset(0): First detailed timing is preferred mode
[ 74685.718] (II) modeset(0): redX: 0.609 redY: 0.340   greenX: 0.324 greenY: 0.550
[ 74685.718] (II) modeset(0): blueX: 0.145 blueY: 0.114   whiteX: 0.319 whiteY: 0.329
[ 74685.718] (II) modeset(0): Manufacturer's mask: 0
[ 74685.718] (II) modeset(0): Supported detailed timing:
[ 74685.718] (II) modeset(0): clock: 96.2 MHz   Image Size:  367 x 230 mm
[ 74685.718] (II) modeset(0): h_active: 1440  h_sync: 1504  h_sync_end 1536 h_blank_end 1760 h_border: 0
[ 74685.718] (II) modeset(0): v_active: 900  v_sync: 903  v_sync_end 906 v_blanking: 912 v_border: 0
[ 74685.718] (II) modeset(0): Unknown vendor-specific block 1
[ 74685.718] (II) modeset(0):  LP171W01
[ 74685.718] (II) modeset(0): Monitor name: Color LCD
[ 74685.718] (II) modeset(0): EDID (in hex):
[ 74685.719] (II) modeset(0): 	00ffffffffffff0006102c9c00000000
[ 74685.719] (II) modeset(0): 	010d0103802517780a031d9c57538c25
[ 74685.719] (II) modeset(0): 	1d515400000001010101010101010101
[ 74685.719] (II) modeset(0): 	0101010101019525a04051840c304020
[ 74685.719] (II) modeset(0): 	33006fe6100000180000000100061030
[ 74685.719] (II) modeset(0): 	00000000000000000a20000000fe004c
[ 74685.719] (II) modeset(0): 	503137315730310000000a20000000fc
[ 74685.719] (II) modeset(0): 	00436f6c6f72204c43440a2020200056
[ 74685.719] (II) modeset(0): Printing probed modes for output LVDS-1
[ 74685.719] (II) modeset(0): Modeline "1440x900"x59.9   96.21  1440 1504 1536 1760  900 903 906 912 -hsync -vsync (54.7 kHz eP)
[ 74685.719] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 74685.719] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 74685.720] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 74685.720] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 74685.720] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 74685.720] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 74685.720] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 74685.720] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 74685.720] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 74685.720] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 74685.720] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 74685.720] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 74685.720] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 74685.720] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 74685.720] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 74685.721] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 74685.721] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 74685.721] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 74685.721] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 74685.721] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 74685.721] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 74685.721] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 74685.721] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 74685.721] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 74685.721] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 74685.721] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 74685.721] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 74685.721] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 74685.721] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 74685.732] (II) modeset(0): EDID for output VGA-1
[ 74686.075] (II) modeset(0): EDID for output SVIDEO-1
[ 74686.075] (II) modeset(0): Output LVDS-1 connected
[ 74686.075] (II) modeset(0): Output VGA-1 disconnected
[ 74686.075] (II) modeset(0): Output SVIDEO-1 disconnected
[ 74686.075] (II) modeset(0): Using exact sizes for initial modes
[ 74686.075] (II) modeset(0): Output LVDS-1 using initial mode 1440x900 +0+0
[ 74686.075] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 74686.075] (==) modeset(0): DPI set to (96, 96)
[ 74686.075] (II) Loading sub module "fb"
[ 74686.075] (II) LoadModule: "fb"
[ 74686.076] (II) Loading /nix/store/y0yahlx7gwkm3p07bny846wp6iykbhxc-xorg-server-1.20.5/lib/xorg/modules/libfb.so
[ 74686.076] (II) Module fb: vendor="X.Org Foundation"
[ 74686.076] 	compiled for 1.20.5, module version = 1.0.0
[ 74686.076] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 74686.076] (II) UnloadModule: "cirrus"
[ 74686.076] (II) Unloading cirrus
[ 74686.076] (II) UnloadModule: "vmware"
[ 74686.076] (II) Unloading vmware
[ 74686.077] Require OpenGL version 2.1 or later.
[ 74686.077] (EE) modeset(0): Failed to initialize glamor at ScreenInit() time.
[ 74686.077] (EE) 
Fatal server error:
[ 74686.077] (EE) AddScreen/ScreenInit failed for driver 0
[ 74686.077] (EE) 
[ 74686.077] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[ 74686.077] (EE) Please also check the log file at "/home/fabiomen10/.local/share/xorg/Xorg.0.log" for additional information.
[ 74686.077] (EE) 
[ 74686.090] (EE) Server terminated with error (1). Closing log file.

That’s all, folks. In more than 10 years of just dating Linux systems, I finally found one that covers all my expectations. From its programming language to the Linux system with multiplatform support.

Couldn’t find any info on whether your CPU has integrated graphics, but it looks like potentially a problem you could fix with services.xserver.videoDrivers (or man configuration.nix and search for videoDrivers).

EDIT: looks like your laptop has integrated intel graphics, I see the following is commented, presumably you have tried with it uncommented:

  services.xserver = { # Enable the X11 windowing system.
      ...
      videoDrivers = ["intel"]; # Enable free video driver.
      ...
  };

Thanks for your attention @KoviRobi :+1:. The processor on my old laptop doesn’t have an integrated GPU. But yes, it has one of my tentatives of the install intel video from the chipset.

So does the Xorg log look different with the intel video driver enabled? (The default for services.xserver.videoDrivers is [ "radeon" "cirrus" "vesa" "vmware" "modesetting" ].)

Seems like the intel video driver might fix the issue

I have found these two other issues in GitHub and tried the “modesetting” options with results no success.
[RFC] NixOS Xorg service: should we remove intel from default videoDrivers #55520

xf86-video-intel: release is very old and possibly incompatible with current kernel; consider building from git? #21953

But I think your core2duo integrated graphics counts as the old one which needs the intel drivers (perhaps Xorg does not work out of the box on Intel GMA 3150 graphics #75014)

(Both intel GMA 950 and 3150 are gen 3 based, Intel GMA - Wikipedia)

The second github issue has been solved by upgrading (xorg.xf86-video-intel: 2018-12-03 -> 2019-12-09 by infinisil · Pull Request #75852 · NixOS/nixpkgs · GitHub)

How to install this version of the day 2019-12-09? Here in the installation of my machine, the driver of the day 2018-12-03 is compiling, but with dependency (gen4_vertex.lo) errors and then it fails.

Ah, right, that only got merged in 13 days ago, and hasn’t made its way into the 19.09 channel. Fortunately it has into the unstable channel, so you could try using the unstable channel :slight_smile:

E.g.

sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos
sudo nixos-rebuild --upgrade switch

(see NixOS 23.11 manual | Nix & NixOS)

It worked! :smile: Now a new journey will begin. Install, configure and customize Qtile.

:sob: Today, my enthusiasm for NixOS has paused, because my laptop’s LCD screen has burned out.

I was recommended to slap the edges of the screen. And voilá! The glow came on again!

1 Like

Sounds like percussive maintenance, potentially the cable is dodgy? Sometimes the hinge’s motion can kill the cable over time. Don’t think it’s NixOS specific, but I take it you meant you are using the old laptop to experiment with NixOS and if it’s broken you can’t experiment.

1 Like

Thanks for your attention @KoviRobi. But my laptop died, the brightness control doesn’t work anymore.

Sad times :frowning: I suspected the connection, but then I realised that actually old laptops had inverters in them to get the high voltage for the backlight, and it could be that which broke. Possibly you could get a replacement component off eBay but probably not worth your time – you’d just be waiting for the next component to fail anyway.