Skip to content

Instantly share code, notes, and snippets.

@ElXreno
Last active January 2, 2021 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ElXreno/f50cdaedc86b972a72952dfa2946f784 to your computer and use it in GitHub Desktop.
Save ElXreno/f50cdaedc86b972a72952dfa2946f784 to your computer and use it in GitHub Desktop.
# 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 =
[
./hardware-configuration.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "laptop";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Minsk";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome3.enable = true;
services.xserver.layout = "us";
services.xserver.xkbOptions = "eurosign:e";
# services.printing.enable = true;
sound.enable = true;
hardware.pulseaudio.enable = true;
services.xserver.libinput.enable = true;
users.users.elxreno = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
environment.systemPackages = with pkgs; [
wget vim htop iotop ripgrep git
firefox
];
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
# services.openssh.enable = true;
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
nixpkgs.config.allowUnfree = true;
services.xserver.videoDrivers = [ "nvidiaLegacy390" ];
hardware.nvidia.prime = {
sync.enable = true;
nvidiaBusId = "PCI:1:0:0";
intelBusId = "PCI:0:2:0";
};
services.xserver.config = ''
Section "Monitor"
Identifier "VGA-0"
Option "Ignore" "true"
Option "Enable" "false"
EndSection
'';
system.stateVersion = "20.09";
}
-- Logs begin at Sat 2021-01-02 18:28:21 +03, end at Sat 2021-01-02 20:12:46 +03. --
Jan 02 20:11:20 laptop kernel: Linux version 5.4.85 (nixbld@localhost) (gcc version 9.3.0 (GCC)) #1-NixOS SMP Mon Dec 21 12:27:07 UTC 2020
Jan 02 20:11:20 laptop kernel: Command line: BOOT_IMAGE=(hd0,msdos1)//kernels/9sjxii9rz89qam6qpa3hkblhhbxkmqqi-linux-5.4.85-bzImage systemConfig=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90 init=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90/init loglevel=4
Jan 02 20:11:20 laptop kernel: Disabled fast string operations
Jan 02 20:11:20 laptop kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jan 02 20:11:20 laptop kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jan 02 20:11:20 laptop kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jan 02 20:11:20 laptop kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Jan 02 20:11:20 laptop kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Jan 02 20:11:20 laptop kernel: BIOS-provided physical RAM map:
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000008ffff] usable
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bab0efff] usable
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bab0f000-0x00000000bad23fff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bad24000-0x00000000bad2bfff] ACPI NVS
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bad2c000-0x00000000bad4efff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bad4f000-0x00000000bad6efff] ACPI NVS
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bad6f000-0x00000000baf1efff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
Jan 02 20:11:20 laptop kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fdfffff] usable
Jan 02 20:11:20 laptop kernel: NX (Execute Disable) protection: active
Jan 02 20:11:20 laptop kernel: SMBIOS 2.6 present.
Jan 02 20:11:20 laptop kernel: DMI: FUJITSU LIFEBOOK AH531/GFO/FJNBB10, BIOS 1.24 03/29/2012
Jan 02 20:11:20 laptop kernel: tsc: Fast TSC calibration using PIT
Jan 02 20:11:20 laptop kernel: tsc: Detected 2294.698 MHz processor
Jan 02 20:11:20 laptop kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jan 02 20:11:20 laptop kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jan 02 20:11:20 laptop kernel: last_pfn = 0x13fe00 max_arch_pfn = 0x400000000
Jan 02 20:11:20 laptop kernel: MTRR default type: uncachable
Jan 02 20:11:20 laptop kernel: MTRR fixed ranges enabled:
Jan 02 20:11:20 laptop kernel: 00000-9FFFF write-back
Jan 02 20:11:20 laptop kernel: A0000-BFFFF uncachable
Jan 02 20:11:20 laptop kernel: C0000-FFFFF write-protect
Jan 02 20:11:20 laptop kernel: MTRR variable ranges enabled:
Jan 02 20:11:20 laptop kernel: 0 base 0FFC00000 mask FFFC00000 write-protect
Jan 02 20:11:20 laptop kernel: 1 base 000000000 mask F80000000 write-back
Jan 02 20:11:20 laptop kernel: 2 base 080000000 mask FC0000000 write-back
Jan 02 20:11:20 laptop kernel: 3 base 0BC000000 mask FFC000000 uncachable
Jan 02 20:11:20 laptop kernel: 4 base 0BB000000 mask FFF000000 uncachable
Jan 02 20:11:20 laptop kernel: 5 base 100000000 mask FC0000000 write-back
Jan 02 20:11:20 laptop kernel: 6 base 13FE00000 mask FFFE00000 uncachable
Jan 02 20:11:20 laptop kernel: 7 disabled
Jan 02 20:11:20 laptop kernel: 8 disabled
Jan 02 20:11:20 laptop kernel: 9 disabled
Jan 02 20:11:20 laptop kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Jan 02 20:11:20 laptop kernel: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
Jan 02 20:11:20 laptop kernel: check: Scanning 1 areas for low memory corruption
Jan 02 20:11:20 laptop kernel: reserving inaccessible SNB gfx pages
Jan 02 20:11:20 laptop kernel: RAMDISK: [mem 0x366d1000-0x3735ffff]
Jan 02 20:11:20 laptop kernel: ACPI: Early table checksum verification disabled
Jan 02 20:11:20 laptop kernel: ACPI: RSDP 0x00000000000F00E0 000024 (v02 FUJ )
Jan 02 20:11:20 laptop kernel: ACPI: XSDT 0x00000000BAFFE120 000084 (v01 FUJ PC 00000001 FUJ 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: FACP 0x00000000BAFF1000 0000F4 (v03 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: DSDT 0x00000000BAFF4000 007954 (v02 FUJ FJNBB10 00000000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: FACS 0x00000000BAF3D000 000040
Jan 02 20:11:20 laptop kernel: ACPI: FACS 0x00000000BAF3D000 000040
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0x00000000BAFFC000 001068 (v01 FUJ PtidDevc 00001000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: ASF! 0x00000000BAFF3000 0000A5 (v32 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: HPET 0x00000000BAFF0000 000038 (v01 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: APIC 0x00000000BAFEF000 000098 (v01 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: MCFG 0x00000000BAFEE000 00003C (v01 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0x00000000BAFED000 000B8A (v01 NvORef NvOptTbl 00001000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0x00000000BAFEC000 00073E (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0x00000000BAFEB000 000996 (v01 PmRef CpuPm 00003000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: UEFI 0x00000000BAFEA000 00003E (v01 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: UEFI 0x00000000BAFE9000 000042 (v01 PTL COMBUF 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: UEFI 0x00000000BAFE8000 000242 (v01 FUJ PC 00000001 PTL 00000001)
Jan 02 20:11:20 laptop kernel: ACPI: Local APIC address 0xfee00000
Jan 02 20:11:20 laptop kernel: No NUMA configuration found
Jan 02 20:11:20 laptop kernel: Faking a node at [mem 0x0000000000000000-0x000000013fdfffff]
Jan 02 20:11:20 laptop kernel: NODE_DATA(0) allocated [mem 0x13fdf8000-0x13fdfcfff]
Jan 02 20:11:20 laptop kernel: Zone ranges:
Jan 02 20:11:20 laptop kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Jan 02 20:11:20 laptop kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Jan 02 20:11:20 laptop kernel: Normal [mem 0x0000000100000000-0x000000013fdfffff]
Jan 02 20:11:20 laptop kernel: Device empty
Jan 02 20:11:20 laptop kernel: Movable zone start for each node
Jan 02 20:11:20 laptop kernel: Early memory node ranges
Jan 02 20:11:20 laptop kernel: node 0: [mem 0x0000000000001000-0x000000000008ffff]
Jan 02 20:11:20 laptop kernel: node 0: [mem 0x0000000000100000-0x00000000bab0efff]
Jan 02 20:11:20 laptop kernel: node 0: [mem 0x00000000bafff000-0x00000000baffffff]
Jan 02 20:11:20 laptop kernel: node 0: [mem 0x0000000100000000-0x000000013fdfffff]
Jan 02 20:11:20 laptop kernel: Zeroed struct page in unavailable ranges: 22369 pages
Jan 02 20:11:20 laptop kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000013fdfffff]
Jan 02 20:11:20 laptop kernel: On node 0 totalpages: 1026207
Jan 02 20:11:20 laptop kernel: DMA zone: 64 pages used for memmap
Jan 02 20:11:20 laptop kernel: DMA zone: 143 pages reserved
Jan 02 20:11:20 laptop kernel: DMA zone: 3983 pages, LIFO batch:0
Jan 02 20:11:20 laptop kernel: DMA32 zone: 11885 pages used for memmap
Jan 02 20:11:20 laptop kernel: DMA32 zone: 760592 pages, LIFO batch:63
Jan 02 20:11:20 laptop kernel: Normal zone: 4088 pages used for memmap
Jan 02 20:11:20 laptop kernel: Normal zone: 261632 pages, LIFO batch:63
Jan 02 20:11:20 laptop kernel: Reserving Intel graphics memory at [mem 0xbba00000-0xbf9fffff]
Jan 02 20:11:20 laptop kernel: ACPI: PM-Timer IO Port: 0x408
Jan 02 20:11:20 laptop kernel: ACPI: Local APIC address 0xfee00000
Jan 02 20:11:20 laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Jan 02 20:11:20 laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jan 02 20:11:20 laptop kernel: IOAPIC[0]: apic_id 14, version 32, address 0xfec00000, GSI 0-23
Jan 02 20:11:20 laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 02 20:11:20 laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 02 20:11:20 laptop kernel: ACPI: IRQ0 used by override.
Jan 02 20:11:20 laptop kernel: ACPI: IRQ9 used by override.
Jan 02 20:11:20 laptop kernel: Using ACPI (MADT) for SMP configuration information
Jan 02 20:11:20 laptop kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
Jan 02 20:11:20 laptop kernel: TSC deadline timer available
Jan 02 20:11:20 laptop kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0x00090000-0x0009ffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbab0f000-0xbad23fff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbad24000-0xbad2bfff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbad2c000-0xbad4efff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbad4f000-0xbad6efff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbad6f000-0xbaf1efff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbaf1f000-0xbaf9efff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
Jan 02 20:11:20 laptop kernel: PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
Jan 02 20:11:20 laptop kernel: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
Jan 02 20:11:20 laptop kernel: Booting paravirtualized kernel on bare hardware
Jan 02 20:11:20 laptop kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Jan 02 20:11:20 laptop kernel: setup_percpu: NR_CPUS:384 nr_cpumask_bits:384 nr_cpu_ids:8 nr_node_ids:1
Jan 02 20:11:20 laptop kernel: percpu: Embedded 53 pages/cpu s176920 r8192 d31976 u262144
Jan 02 20:11:20 laptop kernel: pcpu-alloc: s176920 r8192 d31976 u262144 alloc=1*2097152
Jan 02 20:11:20 laptop kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Jan 02 20:11:20 laptop kernel: Built 1 zonelists, mobility grouping on. Total pages: 1010027
Jan 02 20:11:20 laptop kernel: Policy zone: Normal
Jan 02 20:11:20 laptop kernel: Kernel command line: BOOT_IMAGE=(hd0,msdos1)//kernels/9sjxii9rz89qam6qpa3hkblhhbxkmqqi-linux-5.4.85-bzImage systemConfig=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90 init=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90/init loglevel=4
Jan 02 20:11:20 laptop kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jan 02 20:11:20 laptop kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jan 02 20:11:20 laptop kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Jan 02 20:11:20 laptop kernel: Calgary: detecting Calgary via BIOS EBDA area
Jan 02 20:11:20 laptop kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jan 02 20:11:20 laptop kernel: Memory: 3927368K/4104828K available (10243K kernel code, 1137K rwdata, 2172K rodata, 1552K init, 2420K bss, 177460K reserved, 0K cma-reserved)
Jan 02 20:11:20 laptop kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jan 02 20:11:20 laptop kernel: Kernel/User page tables isolation: enabled
Jan 02 20:11:20 laptop kernel: ftrace: allocating 31874 entries in 125 pages
Jan 02 20:11:20 laptop kernel: rcu: Hierarchical RCU implementation.
Jan 02 20:11:20 laptop kernel: rcu: RCU event tracing is enabled.
Jan 02 20:11:20 laptop kernel: rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=8.
Jan 02 20:11:20 laptop kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Jan 02 20:11:20 laptop kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jan 02 20:11:20 laptop kernel: NR_IRQS: 24832, nr_irqs: 488, preallocated irqs: 16
Jan 02 20:11:20 laptop kernel: random: get_random_bytes called from start_kernel+0x325/0x4fb with crng_init=0
Jan 02 20:11:20 laptop kernel: Console: colour VGA+ 80x25
Jan 02 20:11:20 laptop kernel: printk: console [tty0] enabled
Jan 02 20:11:20 laptop kernel: ACPI: Core revision 20190816
Jan 02 20:11:20 laptop kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jan 02 20:11:20 laptop kernel: APIC: Switch to symmetric I/O mode setup
Jan 02 20:11:20 laptop kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Jan 02 20:11:20 laptop kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 02 20:11:20 laptop kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2113a48d1ad, max_idle_ns: 440795270477 ns
Jan 02 20:11:20 laptop kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.39 BogoMIPS (lpj=2294698)
Jan 02 20:11:20 laptop kernel: pid_max: default: 32768 minimum: 301
Jan 02 20:11:20 laptop kernel: LSM: Security Framework initializing
Jan 02 20:11:20 laptop kernel: Yama: becoming mindful.
Jan 02 20:11:20 laptop kernel: SELinux: Initializing.
Jan 02 20:11:20 laptop kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jan 02 20:11:20 laptop kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jan 02 20:11:20 laptop kernel: Disabled fast string operations
Jan 02 20:11:20 laptop kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jan 02 20:11:20 laptop kernel: process: using mwait in idle threads
Jan 02 20:11:20 laptop kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Jan 02 20:11:20 laptop kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jan 02 20:11:20 laptop kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jan 02 20:11:20 laptop kernel: Spectre V2 : Mitigation: Full generic retpoline
Jan 02 20:11:20 laptop kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jan 02 20:11:20 laptop kernel: Speculative Store Bypass: Vulnerable
Jan 02 20:11:20 laptop kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jan 02 20:11:20 laptop kernel: Freeing SMP alternatives memory: 28K
Jan 02 20:11:20 laptop kernel: smpboot: CPU0: Intel(R) Core(TM) i3-2350M CPU @ 2.30GHz (family: 0x6, model: 0x2a, stepping: 0x7)
Jan 02 20:11:20 laptop kernel: Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
Jan 02 20:11:20 laptop kernel: core: PEBS disabled due to CPU errata, please upgrade microcode
Jan 02 20:11:20 laptop kernel: ... version: 3
Jan 02 20:11:20 laptop kernel: ... bit width: 48
Jan 02 20:11:20 laptop kernel: ... generic registers: 4
Jan 02 20:11:20 laptop kernel: ... value mask: 0000ffffffffffff
Jan 02 20:11:20 laptop kernel: ... max period: 00007fffffffffff
Jan 02 20:11:20 laptop kernel: ... fixed-purpose events: 3
Jan 02 20:11:20 laptop kernel: ... event mask: 000000070000000f
Jan 02 20:11:20 laptop kernel: rcu: Hierarchical SRCU implementation.
Jan 02 20:11:20 laptop kernel: smp: Bringing up secondary CPUs ...
Jan 02 20:11:20 laptop kernel: x86: Booting SMP configuration:
Jan 02 20:11:20 laptop kernel: .... node #0, CPUs: #1
Jan 02 20:11:20 laptop kernel: Disabled fast string operations
Jan 02 20:11:20 laptop kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Jan 02 20:11:20 laptop kernel: #2
Jan 02 20:11:20 laptop kernel: Disabled fast string operations
Jan 02 20:11:20 laptop kernel: #3
Jan 02 20:11:20 laptop kernel: Disabled fast string operations
Jan 02 20:11:20 laptop kernel: smp: Brought up 1 node, 4 CPUs
Jan 02 20:11:20 laptop kernel: smpboot: Max logical packages: 2
Jan 02 20:11:20 laptop kernel: smpboot: Total of 4 processors activated (18357.58 BogoMIPS)
Jan 02 20:11:20 laptop kernel: devtmpfs: initialized
Jan 02 20:11:20 laptop kernel: x86/mm: Memory block size: 128MB
Jan 02 20:11:20 laptop kernel: PM: Registering ACPI NVS region [mem 0xbad24000-0xbad2bfff] (32768 bytes)
Jan 02 20:11:20 laptop kernel: PM: Registering ACPI NVS region [mem 0xbad4f000-0xbad6efff] (131072 bytes)
Jan 02 20:11:20 laptop kernel: PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
Jan 02 20:11:20 laptop kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Jan 02 20:11:20 laptop kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Jan 02 20:11:20 laptop kernel: pinctrl core: initialized pinctrl subsystem
Jan 02 20:11:20 laptop kernel: NET: Registered protocol family 16
Jan 02 20:11:20 laptop kernel: audit: initializing netlink subsys (disabled)
Jan 02 20:11:20 laptop kernel: audit: type=2000 audit(1609607478.013:1): state=initialized audit_enabled=0 res=1
Jan 02 20:11:20 laptop kernel: cpuidle: using governor menu
Jan 02 20:11:20 laptop kernel: ACPI FADT declares the system doesn't support MSI, so disable it
Jan 02 20:11:20 laptop kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jan 02 20:11:20 laptop kernel: ACPI: bus type PCI registered
Jan 02 20:11:20 laptop kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 02 20:11:20 laptop kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jan 02 20:11:20 laptop kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jan 02 20:11:20 laptop kernel: PCI: Using configuration type 1 for base access
Jan 02 20:11:20 laptop kernel: core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
Jan 02 20:11:20 laptop kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jan 02 20:11:20 laptop kernel: mtrr: your CPUs had inconsistent variable MTRR settings
Jan 02 20:11:20 laptop kernel: mtrr: probably your BIOS does not setup all CPUs.
Jan 02 20:11:20 laptop kernel: mtrr: corrected configuration.
Jan 02 20:11:20 laptop kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Module Device)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Processor Device)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jan 02 20:11:20 laptop kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jan 02 20:11:20 laptop kernel: ACPI: 5 ACPI AML tables successfully acquired and loaded
Jan 02 20:11:20 laptop kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jan 02 20:11:20 laptop kernel: ACPI: Dynamic OEM Table Load:
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0xFFFF8C1EBAF94000 00067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: Dynamic OEM Table Load:
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0xFFFF8C1EBAF8C800 000303 (v01 PmRef ApIst 00003000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: Dynamic OEM Table Load:
Jan 02 20:11:20 laptop kernel: ACPI: SSDT 0xFFFF8C1EBA472C00 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
Jan 02 20:11:20 laptop kernel: ACPI: EC: EC started
Jan 02 20:11:20 laptop kernel: ACPI: EC: interrupt blocked
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
Jan 02 20:11:20 laptop kernel: ACPI: Interpreter enabled
Jan 02 20:11:20 laptop kernel: ACPI: (supports S0 S3 S4 S5)
Jan 02 20:11:20 laptop kernel: ACPI: Using IOAPIC for interrupt routing
Jan 02 20:11:20 laptop kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 02 20:11:20 laptop kernel: ACPI: Enabled 9 GPEs in block 00 to 3F
Jan 02 20:11:20 laptop kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Jan 02 20:11:20 laptop kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3]
Jan 02 20:11:20 laptop kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jan 02 20:11:20 laptop kernel: PCI host bridge to bus 0000:00
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
Jan 02 20:11:20 laptop kernel: pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf1000000-0xf13fffff 64bit]
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
Jan 02 20:11:20 laptop kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
Jan 02 20:11:20 laptop kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf2605000-0xf260500f 64bit]
Jan 02 20:11:20 laptop kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
Jan 02 20:11:20 laptop kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xf260a000-0xf260a3ff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
Jan 02 20:11:20 laptop kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf2600000-0xf2603fff 64bit]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
Jan 02 20:11:20 laptop kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf2609000-0xf26093ff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf2608000-0xf26087ff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf2604000-0xf26040ff 64bit]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: enabling Extended Tags
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: Enabling HDA controller
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x16 link at 0000:00:01.0 (capable of 64.000 Gb/s with 5 GT/s x16 link)
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: [10de:0bea] type 00 class 0x040300
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: reg 0x10: [mem 0x00000000-0x00003fff]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: enabling Extended Tags
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: ASPM: current common clock configuration is broken, reconfiguring
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf0ffffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:02:00.0: [8086:008a] type 00 class 0x028000
Jan 02 20:11:20 laptop kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf2500000-0xf2501fff 64bit]
Jan 02 20:11:20 laptop kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: bridge window [mem 0xf2500000-0xf25fffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: PCI bridge to [bus 03-07]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [mem 0xf1d00000-0xf24fffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [mem 0xf1400000-0xf1bfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: [10ec:8168] type 00 class 0x020000
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: reg 0x10: [io 0x2000-0x20ff]
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: reg 0x18: [mem 0xf1c04000-0xf1c04fff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: reg 0x20: [mem 0xf1c00000-0xf1c03fff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: supports D1 D2
Jan 02 20:11:20 laptop kernel: pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: bridge window [mem 0xf1c00000-0xf1cfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 *11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
Jan 02 20:11:20 laptop kernel: ACPI: EC: interrupt unblocked
Jan 02 20:11:20 laptop kernel: ACPI: EC: event unblocked
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions and events
Jan 02 20:11:20 laptop kernel: iommu: Default domain type: Translated
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: vgaarb: no bridge control possible
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Jan 02 20:11:20 laptop kernel: vgaarb: loaded
Jan 02 20:11:20 laptop kernel: PCI: Using ACPI for IRQ routing
Jan 02 20:11:20 laptop kernel: PCI: pci_cache_line_size set to 64 bytes
Jan 02 20:11:20 laptop kernel: e820: reserve RAM buffer [mem 0xbab0f000-0xbbffffff]
Jan 02 20:11:20 laptop kernel: e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
Jan 02 20:11:20 laptop kernel: e820: reserve RAM buffer [mem 0x13fe00000-0x13fffffff]
Jan 02 20:11:20 laptop kernel: NetLabel: Initializing
Jan 02 20:11:20 laptop kernel: NetLabel: domain hash size = 128
Jan 02 20:11:20 laptop kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Jan 02 20:11:20 laptop kernel: NetLabel: unlabeled traffic allowed by default
Jan 02 20:11:20 laptop kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jan 02 20:11:20 laptop kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jan 02 20:11:20 laptop kernel: clocksource: Switched to clocksource tsc-early
Jan 02 20:11:20 laptop kernel: VFS: Disk quotas dquot_6.6.0
Jan 02 20:11:20 laptop kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 02 20:11:20 laptop kernel: pnp: PnP ACPI init
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x0680-0x069f] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x1000-0x100f] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0xffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0xffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x0400-0x0453] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x0458-0x047f] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x0500-0x057f] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: [io 0x164e-0x164f] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 02 20:11:20 laptop kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Jan 02 20:11:20 laptop kernel: system 00:02: [io 0x0454-0x0457] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Jan 02 20:11:20 laptop kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
Jan 02 20:11:20 laptop kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
Jan 02 20:11:20 laptop kernel: system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
Jan 02 20:11:20 laptop kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 02 20:11:20 laptop kernel: system 00:06: [mem 0x20000000-0x201fffff] could not be reserved
Jan 02 20:11:20 laptop kernel: system 00:06: [mem 0x40000000-0x401fffff] could not be reserved
Jan 02 20:11:20 laptop kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
Jan 02 20:11:20 laptop kernel: pnp: PnP ACPI: found 7 devices
Jan 02 20:11:20 laptop kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 02 20:11:20 laptop kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 02 20:11:20 laptop kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 02 20:11:20 laptop kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: BAR 0: no space for [mem size 0x00004000]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: BAR 0: failed to assign [mem size 0x00004000]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf0ffffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.0: bridge window [mem 0xf2500000-0xf25fffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: PCI bridge to [bus 03-07]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [mem 0xf1d00000-0xf24fffff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.3: bridge window [mem 0xf1400000-0xf1bfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
Jan 02 20:11:20 laptop kernel: pci 0000:00:1c.5: bridge window [mem 0xf1c00000-0xf1cfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: Some PCI device resources are unassigned, try booting with pci=realloc
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf0ffffff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:02: resource 1 [mem 0xf2500000-0xf25fffff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:03: resource 1 [mem 0xf1d00000-0xf24fffff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:03: resource 2 [mem 0xf1400000-0xf1bfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:08: resource 0 [io 0x2000-0x2fff]
Jan 02 20:11:20 laptop kernel: pci_bus 0000:08: resource 2 [mem 0xf1c00000-0xf1cfffff 64bit pref]
Jan 02 20:11:20 laptop kernel: NET: Registered protocol family 2
Jan 02 20:11:20 laptop kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
Jan 02 20:11:20 laptop kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jan 02 20:11:20 laptop kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
Jan 02 20:11:20 laptop kernel: TCP: Hash tables configured (established 32768 bind 32768)
Jan 02 20:11:20 laptop kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jan 02 20:11:20 laptop kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jan 02 20:11:20 laptop kernel: NET: Registered protocol family 1
Jan 02 20:11:20 laptop kernel: NET: Registered protocol family 44
Jan 02 20:11:20 laptop kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jan 02 20:11:20 laptop kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Jan 02 20:11:20 laptop kernel: PCI: CLS 64 bytes, default 64
Jan 02 20:11:20 laptop kernel: Trying to unpack rootfs image as initramfs...
Jan 02 20:11:20 laptop kernel: Freeing initrd memory: 12860K
Jan 02 20:11:20 laptop kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jan 02 20:11:20 laptop kernel: software IO TLB: mapped [mem 0xb6b0f000-0xbab0f000] (64MB)
Jan 02 20:11:20 laptop kernel: check: Scanning for low memory corruption every 60 seconds
Jan 02 20:11:20 laptop kernel: Initialise system trusted keyrings
Jan 02 20:11:20 laptop kernel: workingset: timestamp_bits=40 max_order=20 bucket_order=0
Jan 02 20:11:20 laptop kernel: zbud: loaded
Jan 02 20:11:20 laptop kernel: Key type asymmetric registered
Jan 02 20:11:20 laptop kernel: Asymmetric key parser 'x509' registered
Jan 02 20:11:20 laptop kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Jan 02 20:11:20 laptop kernel: io scheduler mq-deadline registered
Jan 02 20:11:20 laptop kernel: io scheduler kyber registered
Jan 02 20:11:20 laptop kernel: intel_idle: MWAIT substates: 0x21120
Jan 02 20:11:20 laptop kernel: intel_idle: v0.4.1 model 0x2A
Jan 02 20:11:20 laptop kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Jan 02 20:11:20 laptop kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jan 02 20:11:20 laptop kernel: brd: module loaded
Jan 02 20:11:20 laptop kernel: intel_pstate: Intel P-state driver initializing
Jan 02 20:11:20 laptop kernel: drop_monitor: Initializing network drop monitor service
Jan 02 20:11:20 laptop kernel: NET: Registered protocol family 10
Jan 02 20:11:20 laptop kernel: Segment Routing with IPv6
Jan 02 20:11:20 laptop kernel: microcode: sig=0x206a7, pf=0x10, revision=0x23
Jan 02 20:11:20 laptop kernel: microcode: Microcode Update Driver: v2.2.
Jan 02 20:11:20 laptop kernel: IPI shorthand broadcast: enabled
Jan 02 20:11:20 laptop kernel: sched_clock: Marking stable (466722473, 1483124)->(475210248, -7004651)
Jan 02 20:11:20 laptop kernel: registered taskstats version 1
Jan 02 20:11:20 laptop kernel: Loading compiled-in X.509 certificates
Jan 02 20:11:20 laptop kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 48b9340bec37afbe6b924077e5d46772551cb172'
Jan 02 20:11:20 laptop kernel: zswap: loaded using pool lzo/zbud
Jan 02 20:11:20 laptop kernel: Key type ._fscrypt registered
Jan 02 20:11:20 laptop kernel: Key type .fscrypt registered
Jan 02 20:11:20 laptop kernel: Freeing unused kernel image memory: 1552K
Jan 02 20:11:20 laptop kernel: Write protecting the kernel read-only data: 16384k
Jan 02 20:11:20 laptop kernel: Freeing unused kernel image memory: 2012K
Jan 02 20:11:20 laptop kernel: Freeing unused kernel image memory: 1924K
Jan 02 20:11:20 laptop kernel: Run /init as init process
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:18 UTC 2021] loading module btrfs...
Jan 02 20:11:20 laptop kernel: raid6: sse2x4 gen() 9664 MB/s
Jan 02 20:11:20 laptop kernel: raid6: sse2x4 xor() 6458 MB/s
Jan 02 20:11:20 laptop kernel: raid6: sse2x2 gen() 8191 MB/s
Jan 02 20:11:20 laptop kernel: raid6: sse2x2 xor() 5591 MB/s
Jan 02 20:11:20 laptop kernel: raid6: sse2x1 gen() 7000 MB/s
Jan 02 20:11:20 laptop kernel: raid6: sse2x1 xor() 4699 MB/s
Jan 02 20:11:20 laptop kernel: raid6: using algorithm sse2x4 gen() 9664 MB/s
Jan 02 20:11:20 laptop kernel: raid6: .... xor() 6458 MB/s, rmw enabled
Jan 02 20:11:20 laptop kernel: raid6: using ssse3x2 recovery algorithm
Jan 02 20:11:20 laptop kernel: xor: automatically using best checksumming function avx
Jan 02 20:11:20 laptop kernel: Btrfs loaded, crc32c=crc32c-intel
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:18 UTC 2021] loading module crc32c...
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:18 UTC 2021] loading module dm_mod...
Jan 02 20:11:20 laptop kernel: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:18 UTC 2021] running udev...
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:18 UTC 2021] Starting version 246
Jan 02 20:11:20 laptop kernel: rtc_cmos 00:01: RTC can wake from S4
Jan 02 20:11:20 laptop kernel: rtc_cmos 00:01: registered as rtc0
Jan 02 20:11:20 laptop kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jan 02 20:11:20 laptop kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Jan 02 20:11:20 laptop kernel: i8042: Detected active multiplexing controller, rev 1.1
Jan 02 20:11:20 laptop kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 02 20:11:20 laptop kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
Jan 02 20:11:20 laptop kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
Jan 02 20:11:20 laptop kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
Jan 02 20:11:20 laptop kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
Jan 02 20:11:20 laptop kernel: SCSI subsystem initialized
Jan 02 20:11:20 laptop kernel: ACPI: bus type USB registered
Jan 02 20:11:20 laptop kernel: usbcore: registered new interface driver usbfs
Jan 02 20:11:20 laptop kernel: usbcore: registered new interface driver hub
Jan 02 20:11:20 laptop kernel: usbcore: registered new device driver usb
Jan 02 20:11:20 laptop kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 02 20:11:20 laptop kernel: ehci-pci: EHCI PCI platform driver
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: debug port 2
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xf260a000
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Jan 02 20:11:20 laptop kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Jan 02 20:11:20 laptop kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 02 20:11:20 laptop kernel: usb usb1: Product: EHCI Host Controller
Jan 02 20:11:20 laptop kernel: usb usb1: Manufacturer: Linux 5.4.85 ehci_hcd
Jan 02 20:11:20 laptop kernel: usb usb1: SerialNumber: 0000:00:1a.0
Jan 02 20:11:20 laptop kernel: hub 1-0:1.0: USB hub found
Jan 02 20:11:20 laptop kernel: hub 1-0:1.0: 2 ports detected
Jan 02 20:11:20 laptop kernel: libata version 3.00 loaded.
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: debug port 2
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf2609000
Jan 02 20:11:20 laptop kernel: ahci 0000:00:1f.2: version 3.0
Jan 02 20:11:20 laptop kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Jan 02 20:11:20 laptop kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Jan 02 20:11:20 laptop kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 02 20:11:20 laptop kernel: usb usb2: Product: EHCI Host Controller
Jan 02 20:11:20 laptop kernel: usb usb2: Manufacturer: Linux 5.4.85 ehci_hcd
Jan 02 20:11:20 laptop kernel: usb usb2: SerialNumber: 0000:00:1d.0
Jan 02 20:11:20 laptop kernel: hub 2-0:1.0: USB hub found
Jan 02 20:11:20 laptop kernel: hub 2-0:1.0: 2 ports detected
Jan 02 20:11:20 laptop kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x9 impl SATA mode
Jan 02 20:11:20 laptop kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
Jan 02 20:11:20 laptop kernel: scsi host0: ahci
Jan 02 20:11:20 laptop kernel: scsi host1: ahci
Jan 02 20:11:20 laptop kernel: scsi host2: ahci
Jan 02 20:11:20 laptop kernel: scsi host3: ahci
Jan 02 20:11:20 laptop kernel: scsi host4: ahci
Jan 02 20:11:20 laptop kernel: scsi host5: ahci
Jan 02 20:11:20 laptop kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Jan 02 20:11:20 laptop kernel: ata1: SATA max UDMA/133 abar m2048@0xf2608000 port 0xf2608100 irq 19
Jan 02 20:11:20 laptop kernel: ata2: DUMMY
Jan 02 20:11:20 laptop kernel: ata3: DUMMY
Jan 02 20:11:20 laptop kernel: ata4: SATA max UDMA/133 abar m2048@0xf2608000 port 0xf2608280 irq 19
Jan 02 20:11:20 laptop kernel: ata5: DUMMY
Jan 02 20:11:20 laptop kernel: ata6: DUMMY
Jan 02 20:11:20 laptop kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Jan 02 20:11:20 laptop kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Jan 02 20:11:20 laptop kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jan 02 20:11:20 laptop kernel: ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jan 02 20:11:20 laptop kernel: ata1.00: supports DRM functions and may not be fully accessible
Jan 02 20:11:20 laptop kernel: ata4.00: ATAPI: TSSTcorp CDDVDW TS-L633F, FU01, max UDMA/100
Jan 02 20:11:20 laptop kernel: ata1.00: ATA-11: Samsung SSD 860 EVO 250GB, RVT04B6Q, max UDMA/133
Jan 02 20:11:20 laptop kernel: ata1.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jan 02 20:11:20 laptop kernel: ata1.00: supports DRM functions and may not be fully accessible
Jan 02 20:11:20 laptop kernel: ata4.00: configured for UDMA/100
Jan 02 20:11:20 laptop kernel: ata1.00: configured for UDMA/133
Jan 02 20:11:20 laptop kernel: scsi 0:0:0:0: Direct-Access ATA Samsung SSD 860 4B6Q PQ: 0 ANSI: 5
Jan 02 20:11:20 laptop kernel: scsi 3:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633F FU01 PQ: 0 ANSI: 5
Jan 02 20:11:20 laptop kernel: ata1.00: Enabling discard_zeroes_data
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] Write Protect is off
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 02 20:11:20 laptop kernel: ata1.00: Enabling discard_zeroes_data
Jan 02 20:11:20 laptop kernel: sda: sda1 sda2 sda3 sda4
Jan 02 20:11:20 laptop kernel: ata1.00: Enabling discard_zeroes_data
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] supports TCG Opal
Jan 02 20:11:20 laptop kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jan 02 20:11:20 laptop kernel: sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Jan 02 20:11:20 laptop kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jan 02 20:11:20 laptop kernel: sr 3:0:0:0: Attached scsi CD-ROM sr0
Jan 02 20:11:20 laptop kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Jan 02 20:11:20 laptop kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 02 20:11:20 laptop kernel: hub 1-1:1.0: USB hub found
Jan 02 20:11:20 laptop kernel: hub 1-1:1.0: 6 ports detected
Jan 02 20:11:20 laptop kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Jan 02 20:11:20 laptop kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 02 20:11:20 laptop kernel: hub 2-1:1.0: USB hub found
Jan 02 20:11:20 laptop kernel: hub 2-1:1.0: 6 ports detected
Jan 02 20:11:20 laptop kernel: tsc: Refined TSC clocksource calibration: 2294.786 MHz
Jan 02 20:11:20 laptop kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2113f7e44a7, max_idle_ns: 440795281465 ns
Jan 02 20:11:20 laptop kernel: clocksource: Switched to clocksource tsc
Jan 02 20:11:20 laptop kernel: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
Jan 02 20:11:20 laptop kernel: usb 2-1.4: new full-speed USB device number 3 using ehci-pci
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:19 UTC 2021] starting device mapper and LVM...
Jan 02 20:11:20 laptop kernel: random: lvm: uninitialized urandom read (4 bytes read)
Jan 02 20:11:20 laptop kernel: usb 2-1.4: New USB device found, idVendor=8086, idProduct=0189, bcdDevice=69.19
Jan 02 20:11:20 laptop kernel: usb 2-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 02 20:11:20 laptop kernel: usb 1-1.3: New USB device found, idVendor=04f2, idProduct=b213, bcdDevice=37.61
Jan 02 20:11:20 laptop kernel: usb 1-1.3: New USB device strings: Mfr=2, Product=1, SerialNumber=3
Jan 02 20:11:20 laptop kernel: usb 1-1.3: Product: FJ Camera
Jan 02 20:11:20 laptop kernel: usb 1-1.3: Manufacturer: Sonix Technology Co., Ltd.
Jan 02 20:11:20 laptop kernel: usb 1-1.3: SerialNumber: SN0001
Jan 02 20:11:20 laptop kernel: random: fast init done
Jan 02 20:11:20 laptop kernel: BTRFS: device fsid 4311488e-f924-417d-8f58-164f99ee776d devid 1 transid 371 /dev/sda2
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:19 UTC 2021] Scanning for Btrfs filesystems
Jan 02 20:11:20 laptop stage-1-init: [Sat Jan 2 17:11:19 UTC 2021] mounting /dev/disk/by-uuid/4311488e-f924-417d-8f58-164f99ee776d on /...
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): use zstd compression, level 1
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): disk space caching is enabled
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): has skinny extents
Jan 02 20:11:20 laptop kernel: usb 2-1.6: new high-speed USB device number 4 using ehci-pci
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): enabling ssd optimizations
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): disk space caching is enabled
Jan 02 20:11:20 laptop unknown: booting system configuration /nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90
Jan 02 20:11:20 laptop stage-2-init: running activation script...
Jan 02 20:11:20 laptop kernel: random: perl: uninitialized urandom read (4 bytes read)
Jan 02 20:11:20 laptop kernel: usb 2-1.6: New USB device found, idVendor=0bda, idProduct=0138, bcdDevice=38.82
Jan 02 20:11:20 laptop kernel: usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 02 20:11:20 laptop kernel: usb 2-1.6: Product: USB2.0-CRW
Jan 02 20:11:20 laptop kernel: usb 2-1.6: Manufacturer: Generic
Jan 02 20:11:20 laptop kernel: usb 2-1.6: SerialNumber: 20090516388200000
Jan 02 20:11:20 laptop stage-2-init: setting up /etc...
Jan 02 20:11:20 laptop kernel: random: perl: uninitialized urandom read (4 bytes read)
Jan 02 20:11:20 laptop systemd[1]: Inserted module 'autofs4'
Jan 02 20:11:20 laptop systemd[1]: systemd 246 running in system mode. (+PAM +AUDIT -SELINUX +IMA +APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ +LZ4 -ZSTD +SECCOMP +BLKID -ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Jan 02 20:11:20 laptop systemd[1]: Detected architecture x86-64.
Jan 02 20:11:20 laptop systemd[1]: Set hostname to <laptop>.
Jan 02 20:11:20 laptop systemd[1]: Queued start job for default target Graphical Interface.
Jan 02 20:11:20 laptop kernel: urandom_read: 4 callbacks suppressed
Jan 02 20:11:20 laptop kernel: random: systemd: uninitialized urandom read (16 bytes read)
Jan 02 20:11:20 laptop systemd[1]: cgroup compatibility translation between legacy and unified hierarchy settings activated. See cgroup-compat debug messages for details.
Jan 02 20:11:20 laptop systemd[1]: Created slice Virtual Machine and Container Slice.
Jan 02 20:11:20 laptop kernel: random: systemd: uninitialized urandom read (16 bytes read)
Jan 02 20:11:20 laptop systemd[1]: Created slice system-getty.slice.
Jan 02 20:11:20 laptop kernel: random: systemd: uninitialized urandom read (16 bytes read)
Jan 02 20:11:20 laptop systemd[1]: Created slice system-systemd\x2dfsck.slice.
Jan 02 20:11:20 laptop systemd[1]: Created slice User and Session Slice.
Jan 02 20:11:20 laptop systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jan 02 20:11:20 laptop systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jan 02 20:11:20 laptop systemd[1]: Reached target Local Encrypted Volumes.
Jan 02 20:11:20 laptop systemd[1]: Reached target Containers.
Jan 02 20:11:20 laptop systemd[1]: Reached target Paths.
Jan 02 20:11:20 laptop systemd[1]: Reached target Remote File Systems.
Jan 02 20:11:20 laptop systemd[1]: Reached target Slices.
Jan 02 20:11:20 laptop systemd[1]: Reached target Swap.
Jan 02 20:11:20 laptop systemd[1]: Reached target System Time Synchronized.
Jan 02 20:11:20 laptop systemd[1]: Listening on Process Core Dump Socket.
Jan 02 20:11:20 laptop systemd[1]: Listening on Journal Audit Socket.
Jan 02 20:11:20 laptop systemd[1]: Listening on Journal Socket (/dev/log).
Jan 02 20:11:20 laptop systemd[1]: Listening on Journal Socket.
Jan 02 20:11:20 laptop systemd[1]: Listening on udev Control Socket.
Jan 02 20:11:20 laptop systemd[1]: Listening on udev Kernel Socket.
Jan 02 20:11:20 laptop systemd[1]: Mounting Huge Pages File System...
Jan 02 20:11:20 laptop systemd[1]: Mounting POSIX Message Queue File System...
Jan 02 20:11:20 laptop systemd[1]: Mounting Kernel Debug File System...
Jan 02 20:11:20 laptop systemd[1]: Starting Create list of static device nodes for the current kernel...
Jan 02 20:11:20 laptop systemd[1]: Starting Journal Service...
Jan 02 20:11:20 laptop systemd[1]: Starting Load Kernel Modules...
Jan 02 20:11:20 laptop systemd[1]: Starting Remount Root and Kernel File Systems...
Jan 02 20:11:20 laptop systemd[1]: Starting Coldplug All udev Devices...
Jan 02 20:11:20 laptop systemd[1]: Mounted Huge Pages File System.
Jan 02 20:11:20 laptop systemd[1]: Mounted POSIX Message Queue File System.
Jan 02 20:11:20 laptop systemd[1]: Mounted Kernel Debug File System.
Jan 02 20:11:20 laptop systemd[1]: Finished Create list of static device nodes for the current kernel.
Jan 02 20:11:20 laptop systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 02 20:11:20 laptop systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.565:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jan 02 20:11:20 laptop kernel: BTRFS info (device sda2): disk space caching is enabled
Jan 02 20:11:20 laptop systemd[1]: Finished Remount Root and Kernel File Systems.
Jan 02 20:11:20 laptop systemd[1]: Reached target Local File Systems (Pre).
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.605:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-remount-fs comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Starting Load/Save Random Seed...
Jan 02 20:11:20 laptop systemd-journald[496]: Journal started
Jan 02 20:11:20 laptop systemd-journald[496]: Runtime Journal (/run/log/journal/8ba25ee88e24425c86d78af01acac3b6) is 8.0M, max 96.3M, 88.3M free.
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-remount-fs comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Started Journal Service.
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.626:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Starting Flush Journal to Persistent Storage...
Jan 02 20:11:20 laptop systemd-random-seed[505]: Kernel entropy pool is not initialized yet, waiting until it is.
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'kvm_intel'
Jan 02 20:11:20 laptop systemd-journald[496]: Time spent on flushing to /var/log/journal/8ba25ee88e24425c86d78af01acac3b6 is 83.384ms for 700 entries.
Jan 02 20:11:20 laptop systemd-journald[496]: System Journal (/var/log/journal/8ba25ee88e24425c86d78af01acac3b6) is 48.0M, max 4.0G, 3.9G free.
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.654:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Jan 02 20:11:20 laptop kernel: tun: Universal TUN/TAP device driver, 1.6
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.738:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop kernel: loop: module loaded
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Finished Coldplug All udev Devices.
Jan 02 20:11:20 laptop systemd[1]: Starting Wait for udev To Complete Device Initialization...
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'bridge'
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'macvlan'
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'tap'
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'tun'
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'cpufreq_powersave'
Jan 02 20:11:20 laptop systemd[1]: Started Rule-based Manager for Device Events and Files.
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'loop'
Jan 02 20:11:20 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journal-flush comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd[1]: Finished Flush Journal to Persistent Storage.
Jan 02 20:11:20 laptop kernel: audit: type=1130 audit(1609607480.789:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journal-flush comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:20 laptop systemd-modules-load[497]: Inserted module 'snd_pcm_oss'
Jan 02 20:11:20 laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
Jan 02 20:11:20 laptop kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
Jan 02 20:11:20 laptop kernel: ACPI: Power Button [PWRB]
Jan 02 20:11:20 laptop kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input6
Jan 02 20:11:20 laptop kernel: ACPI: Lid Switch [LID]
Jan 02 20:11:20 laptop kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
Jan 02 20:11:20 laptop kernel: ACPI: Power Button [PWRF]
Jan 02 20:11:20 laptop kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
Jan 02 20:11:20 laptop kernel: IPMI message handler: version 39.2
Jan 02 20:11:20 laptop kernel: ipmi device interface
Jan 02 20:11:20 laptop kernel: fujitsu_laptop: ACPI: Fujitsu FUJ02E3 [FEXT]
Jan 02 20:11:20 laptop kernel: ACPI: \_SB_.FEXT: BTNI: [0x80001]
Jan 02 20:11:20 laptop kernel: input: Fujitsu FUJ02E3 as /devices/LNXSYSTM:00/LNXSYBUS:00/FUJ02E3:00/input/input8
Jan 02 20:11:20 laptop kernel: fujitsu_laptop: driver 0.6.0 successfully loaded
Jan 02 20:11:20 laptop kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jan 02 20:11:20 laptop kernel: ACPI: Thermal Zone [THRM] (53 C)
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-204)
Jan 02 20:11:20 laptop kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 02 20:11:20 laptop kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jan 02 20:11:20 laptop kernel: nvidia: loading out-of-tree module taints kernel.
Jan 02 20:11:20 laptop kernel: nvidia: module license 'NVIDIA' taints kernel.
Jan 02 20:11:20 laptop kernel: Disabling lock debugging due to kernel taint
Jan 02 20:11:20 laptop mtp-probe[535]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3"
Jan 02 20:11:20 laptop mtp-probe[536]: checking bus 2, device 4: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6"
Jan 02 20:11:20 laptop mtp-probe[536]: bus: 2, device: 4 was not an MTP device
Jan 02 20:11:20 laptop mtp-probe[535]: bus: 1, device: 3 was not an MTP device
Jan 02 20:11:21 laptop kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Jan 02 20:11:21 laptop systemd[1]: Found device Samsung_SSD_860_EVO_250GB boot.
Jan 02 20:11:21 laptop systemd[1]: Starting File System Check on /dev/disk/by-uuid/e2d3de2f-3726-4413-a4d9-6d52bae7c045...
Jan 02 20:11:21 laptop kernel: BTRFS info (device sda2): devid 1 device path /dev/disk/by-uuid/4311488e-f924-417d-8f58-164f99ee776d changed to /dev/sda2 scanned by systemd-udevd (511)
Jan 02 20:11:21 laptop kernel: random: crng init done
Jan 02 20:11:21 laptop systemd[1]: Finished Load/Save Random Seed.
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-random-seed comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop kernel: audit: type=1130 audit(1609607481.035:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-random-seed comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Found device Samsung_SSD_860_EVO_250GB 2.
Jan 02 20:11:21 laptop systemd[1]: home.mount: Directory /home to mount over is not empty, mounting anyway.
Jan 02 20:11:21 laptop systemd[1]: Mounting /home...
Jan 02 20:11:21 laptop systemd-fsck[543]: boot: clean, 306/65536 files, 22073/262144 blocks
Jan 02 20:11:21 laptop kernel: mc: Linux media interface: v0.10
Jan 02 20:11:21 laptop kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 247
Jan 02 20:11:21 laptop kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Jan 02 20:11:21 laptop kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
Jan 02 20:11:21 laptop kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 390.138 Thu May 14 01:01:53 PDT 2020 (using threaded interrupts)
Jan 02 20:11:21 laptop systemd[1]: Mounted /home.
Jan 02 20:11:21 laptop kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jan 02 20:11:21 laptop systemd[1]: Finished File System Check on /dev/disk/by-uuid/e2d3de2f-3726-4413-a4d9-6d52bae7c045.
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck@dev-disk-by\x2duuid-e2d3de2f\x2d3726\x2d4413\x2da4d9\x2d6d52bae7c045 comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop kernel: audit: type=1130 audit(1609607481.079:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck@dev-disk-by\x2duuid-e2d3de2f\x2d3726\x2d4413\x2da4d9\x2d6d52bae7c045 comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Mounting /boot...
Jan 02 20:11:21 laptop kernel: usbcore: registered new interface driver usb-storage
Jan 02 20:11:21 laptop kernel: r8169 0000:08:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 02 20:11:21 laptop kernel: Linux agpgart interface v0.103
Jan 02 20:11:21 laptop kernel: libphy: r8169: probed
Jan 02 20:11:21 laptop kernel: r8169 0000:08:00.0 eth0: RTL8168e/8111e, 5c:9a:d8:59:ee:71, XID 2c2, IRQ 17
Jan 02 20:11:21 laptop kernel: r8169 0000:08:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jan 02 20:11:21 laptop kernel: usbcore: registered new interface driver uas
Jan 02 20:11:21 laptop kernel: nvidia-uvm: Loaded the UVM driver in 8 mode, major device number 246
Jan 02 20:11:21 laptop kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jan 02 20:11:21 laptop systemd-modules-load[497]: Inserted module 'nvidia_uvm'
Jan 02 20:11:21 laptop kernel: ums-realtek 2-1.6:1.0: USB Mass Storage device detected
Jan 02 20:11:21 laptop kernel: videodev: Linux video capture interface: v2.00
Jan 02 20:11:21 laptop kernel: scsi host6: usb-storage 2-1.6:1.0
Jan 02 20:11:21 laptop kernel: usbcore: registered new interface driver ums-realtek
Jan 02 20:11:21 laptop kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Jan 02 20:11:21 laptop kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Jan 02 20:11:21 laptop kernel: snd_hda_intel 0000:01:00.1: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
Jan 02 20:11:21 laptop kernel: snd_hda_intel 0000:01:00.1: ioremap error
Jan 02 20:11:21 laptop kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 390.138 Thu May 14 04:02:47 PDT 2020
Jan 02 20:11:21 laptop systemd-modules-load[497]: Inserted module 'nvidia_modeset'
Jan 02 20:11:21 laptop kernel: Bluetooth: Core ver 2.22
Jan 02 20:11:21 laptop kernel: NET: Registered protocol family 31
Jan 02 20:11:21 laptop kernel: Bluetooth: HCI device and connection manager initialized
Jan 02 20:11:21 laptop kernel: Bluetooth: HCI socket layer initialized
Jan 02 20:11:21 laptop kernel: Bluetooth: L2CAP socket layer initialized
Jan 02 20:11:21 laptop kernel: Bluetooth: SCO socket layer initialized
Jan 02 20:11:21 laptop kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
Jan 02 20:11:21 laptop kernel: RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
Jan 02 20:11:21 laptop kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Jan 02 20:11:21 laptop kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
Jan 02 20:11:21 laptop kernel: cryptd: max_cpu_qlen set to 1000
Jan 02 20:11:21 laptop kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jan 02 20:11:21 laptop kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jan 02 20:11:21 laptop kernel: cfg80211: failed to load regulatory.db
Jan 02 20:11:21 laptop kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jan 02 20:11:21 laptop systemd[1]: Mounted /boot.
Jan 02 20:11:21 laptop systemd[1]: Reached target Local File Systems.
Jan 02 20:11:21 laptop systemd[1]: Starting Create Volatile Files and Directories...
Jan 02 20:11:21 laptop systemd-modules-load[497]: Inserted module 'nvidia_drm'
Jan 02 20:11:21 laptop kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Jan 02 20:11:21 laptop kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 0
Jan 02 20:11:21 laptop systemd[1]: Finished Load Kernel Modules.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in FUSE Control File System being skipped.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Kernel Configuration File System being skipped.
Jan 02 20:11:21 laptop systemd-udevd[510]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-modules-load comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop kernel: audit: type=1130 audit(1609607481.331:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-modules-load comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Starting Firewall...
Jan 02 20:11:21 laptop systemd[1]: Starting Apply Kernel Variables...
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Finished Create Volatile Files and Directories.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Jan 02 20:11:21 laptop systemd[1]: Starting Network Time Synchronization...
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Update is Completed being skipped.
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jan 02 20:11:21 laptop systemd-sysctl[574]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jan 02 20:11:21 laptop systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=0
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop audit[578]: SYSTEM_BOOT pid=578 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg=' comm="systemd-update-utmp" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Finished Apply Kernel Variables.
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-update-utmp comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=0
Jan 02 20:11:21 laptop kernel: usbcore: registered new interface driver btusb
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=4
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=4
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=6
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=6
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=7
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=7
Jan 02 20:11:21 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-timesyncd comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:21 laptop systemd[1]: Started Network Time Synchronization.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=9
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=9
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=10
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=10
Jan 02 20:11:21 laptop kernel: Intel(R) Wireless WiFi driver for Linux
Jan 02 20:11:21 laptop kernel: Copyright(c) 2003- 2015 Intel Corporation
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: pci_enable_msi failed - -22
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=12
Jan 02 20:11:21 laptop kernel: uvcvideo: Found UVC 1.00 device FJ Camera (04f2:b213)
Jan 02 20:11:21 laptop kernel: input: FJ Camera: FJ Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input11
Jan 02 20:11:21 laptop kernel: usbcore: registered new interface driver uvcvideo
Jan 02 20:11:21 laptop kernel: USB Video Class driver (1.1.1)
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=12
Jan 02 20:11:21 laptop kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jan 02 20:11:21 laptop kernel: Console: switching to colour dummy device 80x25
Jan 02 20:11:21 laptop kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jan 02 20:11:21 laptop kernel: [drm] Driver supports precise vblank timestamp query.
Jan 02 20:11:21 laptop systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jan 02 20:11:21 laptop systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=13
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=13
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=14
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=14
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=15
Jan 02 20:11:21 laptop kernel: [drm] Initialized i915 1.6.0 20190822 for 0000:00:02.0 on minor 1
Jan 02 20:11:21 laptop kernel: ACPI: Video Device [PEGP] (multi-head: no rom: yes post: no)
Jan 02 20:11:21 laptop kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2a/LNXVIDEO:00/input/input12
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=15
Jan 02 20:11:21 laptop kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
Jan 02 20:11:21 laptop kernel: acpi device:30: registered as cooling_device5
Jan 02 20:11:21 laptop kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input13
Jan 02 20:11:21 laptop kernel: snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=0
Jan 02 20:11:21 laptop kernel: fbcon: i915drmfb (fb0) is primary device
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=10 entries=0
Jan 02 20:11:21 laptop systemd-udevd[519]: Using default interface naming scheme 'v245'.
Jan 02 20:11:21 laptop kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Jan 02 20:11:21 laptop kernel: iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
Jan 02 20:11:21 laptop systemd-udevd[519]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 02 20:11:21 laptop kernel: r8169 0000:08:00.0 enp8s0: renamed from eth0
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Wireless-N 1030 BGN, REV=0xB0
Jan 02 20:11:21 laptop kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=3
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=10 entries=3
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=5
Jan 02 20:11:21 laptop systemd-udevd[519]: eth0: Process '/nix/store/a3fc4zqaiak11jks9zd579mz5v0li8bg-bash-4.4-p23/bin/sh -c 'echo 2 > /proc/sys/net/ipv6/conf/eth0/use_tempaddr'' failed with exit code 1.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=10 entries=5
Jan 02 20:11:21 laptop kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=6
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=7
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=8
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=10 entries=6
Jan 02 20:11:21 laptop systemd-udevd[511]: nvidia: Process '/nix/store/a3fc4zqaiak11jks9zd579mz5v0li8bg-bash-4.4-p23/bin/bash -c 'mknod -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/devices | cut -d \ -f 1) 255'' failed with exit code 1.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=2 entries=9
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=raw family=10 entries=7
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=17
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=17
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in FUSE Control File System being skipped.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Kernel Configuration File System being skipped.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Jan 02 20:11:21 laptop systemd[1]: Condition check resulted in Update is Completed being skipped.
Jan 02 20:11:21 laptop kernel: intel_rapl_common: Found RAPL domain package
Jan 02 20:11:21 laptop kernel: intel_rapl_common: Found RAPL domain core
Jan 02 20:11:21 laptop kernel: intel_rapl_common: Found RAPL domain uncore
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=18
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=18
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=19
Jan 02 20:11:21 laptop systemd-udevd[508]: Using default interface naming scheme 'v245'.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=19
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=20
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=20
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=21
Jan 02 20:11:21 laptop systemd-udevd[515]: Using default interface naming scheme 'v245'.
Jan 02 20:11:21 laptop systemd-udevd[515]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=22
Jan 02 20:11:21 laptop kernel: iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
Jan 02 20:11:21 laptop systemd[1]: Started Load/Save RF Kill Switch Status.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=23
Jan 02 20:11:21 laptop systemd-udevd[515]: wlan0: Process '/nix/store/a3fc4zqaiak11jks9zd579mz5v0li8bg-bash-4.4-p23/bin/sh -c 'echo 2 > /proc/sys/net/ipv6/conf/wlan0/use_tempaddr'' failed with exit code 1.
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=nat family=2 entries=0
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=nat family=10 entries=0
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=21
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=24
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=2 entries=22
Jan 02 20:11:21 laptop audit: NETFILTER_CFG table=filter family=10 entries=25
Jan 02 20:11:21 laptop kernel: psmouse serio2: synaptics: queried max coordinates: x [..5682], y [..4692]
Jan 02 20:11:22 laptop kernel: psmouse serio2: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa44000/0xa0000/0x0, board id: 0, fw id: 554713
Jan 02 20:11:22 laptop kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input10
Jan 02 20:11:22 laptop kernel: mousedev: PS/2 mouse device common for all mice
Jan 02 20:11:22 laptop kernel: scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
Jan 02 20:11:22 laptop kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Jan 02 20:11:22 laptop kernel: Console: switching to colour frame buffer device 170x48
Jan 02 20:11:22 laptop kernel: i915 0000:00:02.0: fb0: i915drmfb frame buffer device
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: ALC269VB: SKU not ready 0x90970130
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: inputs:
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
Jan 02 20:11:22 laptop kernel: snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
Jan 02 20:11:22 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-rfkill comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:22 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=firewall comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:22 laptop systemd[1]: Finished Firewall.
Jan 02 20:11:22 laptop kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
Jan 02 20:11:22 laptop kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
Jan 02 20:11:22 laptop kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
Jan 02 20:11:22 laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
Jan 02 20:11:22 laptop systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Jan 02 20:11:22 laptop udevadm[507]: systemd-udev-settle.service is deprecated. Please fix display-manager.service not to pull it in.
Jan 02 20:11:22 laptop systemd[1]: Reached target Sound Card.
Jan 02 20:11:22 laptop systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jan 02 20:11:22 laptop systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Jan 02 20:11:22 laptop systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jan 02 20:11:22 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-backlight@backlight:acpi_video0 comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:22 laptop systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Jan 02 20:11:22 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:22 laptop systemd[1]: Finished Wait for udev To Complete Device Initialization.
Jan 02 20:11:22 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-settle comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:22 laptop systemd[1]: Reached target System Initialization.
Jan 02 20:11:22 laptop systemd[1]: Started Daily Cleanup of Temporary Directories.
Jan 02 20:11:22 laptop systemd[1]: Reached target Timers.
Jan 02 20:11:22 laptop systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jan 02 20:11:22 laptop systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 02 20:11:22 laptop systemd[1]: Listening on Nix Daemon Socket.
Jan 02 20:11:22 laptop systemd[1]: Reached target Sockets.
Jan 02 20:11:22 laptop systemd[1]: Reached target Basic System.
Jan 02 20:11:22 laptop systemd[1]: Starting Network Manager Script Dispatcher Service...
Jan 02 20:11:22 laptop systemd[1]: Starting ACPI Daemon...
Jan 02 20:11:22 laptop systemd[1]: Starting Store Sound Card State...
Jan 02 20:11:22 laptop systemd[1]: Starting Kernel Auditing...
Jan 02 20:11:22 laptop systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jan 02 20:11:22 laptop systemd[1]: Starting Bluetooth service...
Jan 02 20:11:23 laptop systemd[1]: Starting CPU Frequency Setup...
Jan 02 20:11:23 laptop systemd[1]: Starting Name Service Cache Daemon...
Jan 02 20:11:23 laptop systemd[1]: Starting resolvconf update...
Jan 02 20:11:23 laptop systemd[1]: Starting Virtual Machine and Container Registration Service...
Jan 02 20:11:23 laptop 2nqwnkhfswrvf3gj6x67aacgkiv7kivx-audit-disable[768]: No rules
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring file `/etc/passwd` (1)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring file `/etc/group` (3)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring file `/etc/hosts` (4)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring file `/etc/resolv.conf` (5)
Jan 02 20:11:23 laptop systemd[1]: Started ACPI Daemon.
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring file `/etc/services` (6)
Jan 02 20:11:23 laptop nscd[772]: 772 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[772]: 772 disabled inotify-based monitoring for file `/etc/netgroup': No such file or directory
Jan 02 20:11:23 laptop nscd[772]: 772 stat failed for file `/etc/netgroup'; will try again later: No such file or directory
Jan 02 20:11:23 laptop kernel: kauditd_printk_skb: 59 callbacks suppressed
Jan 02 20:11:23 laptop kernel: audit: type=1130 audit(1609607483.022:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=acpid comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:23 laptop kernel: audit: type=1305 audit(1609607483.022:71): op=set audit_enabled=0 old=1 auid=4294967295 ses=4294967295 subj=kernel res=1
Jan 02 20:11:23 laptop audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=acpid comm="systemd" exe="/nix/store/lqv1qn0r19kzc9hhibj8k667049196wr-systemd-246.6/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 02 20:11:23 laptop audit: CONFIG_CHANGE op=set audit_enabled=0 old=1 auid=4294967295 ses=4294967295 subj=kernel res=1
Jan 02 20:11:23 laptop systemd[1]: Finished Store Sound Card State.
Jan 02 20:11:23 laptop systemd[1]: Finished Kernel Auditing.
Jan 02 20:11:23 laptop systemd[1]: Started D-Bus System Message Bus.
Jan 02 20:11:23 laptop avahi-daemon[764]: Found user 'avahi' (UID 999) and group 'avahi' (GID 999).
Jan 02 20:11:23 laptop bluetoothd[765]: Bluetooth daemon 5.55
Jan 02 20:11:23 laptop avahi-daemon[764]: Successfully dropped root privileges.
Jan 02 20:11:23 laptop avahi-daemon[764]: avahi-daemon 0.7 starting up.
Jan 02 20:11:23 laptop avahi-daemon[764]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop bluetoothd[765]: src/main.c:parse_controller_config() Key file does not have group “Controller”
Jan 02 20:11:23 laptop systemd[1]: Started Name Service Cache Daemon.
Jan 02 20:11:23 laptop systemd[1]: Reached target Host and Network Name Lookups.
Jan 02 20:11:23 laptop systemd[1]: Reached target User and Group Name Lookups.
Jan 02 20:11:23 laptop cpupower[767]: Setting cpu: 0
Jan 02 20:11:23 laptop cpupower[767]: Setting cpu: 1
Jan 02 20:11:23 laptop cpupower[767]: Setting cpu: 2
Jan 02 20:11:23 laptop cpupower[767]: Setting cpu: 3
Jan 02 20:11:23 laptop systemd[1]: Starting Accounts Service...
Jan 02 20:11:23 laptop acpid[769]: starting up with netlink and the input layer
Jan 02 20:11:23 laptop acpid[769]: 3 rules loaded
Jan 02 20:11:23 laptop acpid[769]: waiting for events: event logging is off
Jan 02 20:11:23 laptop systemd[1]: Starting User Login Management...
Jan 02 20:11:23 laptop systemd[1]: Finished CPU Frequency Setup.
Jan 02 20:11:23 laptop dbus-daemon[781]: dbus[781]: Unknown username "nm-openconnect" in message bus configuration file
Jan 02 20:11:23 laptop dbus-daemon[781]: dbus[781]: Unknown username "pulse" in message bus configuration file
Jan 02 20:11:23 laptop dbus-daemon[781]: dbus[781]: Unknown group "netdev" in message bus configuration file
Jan 02 20:11:23 laptop dbus-daemon[781]: dbus[781]: Unknown username "nm-openconnect" in message bus configuration file
Jan 02 20:11:23 laptop dbus-daemon[781]: dbus[781]: Unknown group "netdev" in message bus configuration file
Jan 02 20:11:23 laptop nscd[772]: 772 monitored file `/etc/resolv.conf` was written to
Jan 02 20:11:23 laptop systemd[1]: Stopping Name Service Cache Daemon...
Jan 02 20:11:23 laptop systemd[1]: nscd.service: Succeeded.
Jan 02 20:11:23 laptop systemd[1]: Stopped Name Service Cache Daemon.
Jan 02 20:11:23 laptop systemd-logind[799]: New seat seat0.
Jan 02 20:11:23 laptop systemd[1]: Starting Name Service Cache Daemon...
Jan 02 20:11:23 laptop systemd-logind[799]: Watching system buttons on /dev/input/event3 (Power Button)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring file `/etc/passwd` (1)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring file `/etc/group` (3)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring file `/etc/hosts` (4)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring file `/etc/resolv.conf` (5)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring file `/etc/services` (6)
Jan 02 20:11:23 laptop nscd[834]: 834 monitoring directory `/etc` (2)
Jan 02 20:11:23 laptop nscd[834]: 834 disabled inotify-based monitoring for file `/etc/netgroup': No such file or directory
Jan 02 20:11:23 laptop nscd[834]: 834 stat failed for file `/etc/netgroup'; will try again later: No such file or directory
Jan 02 20:11:23 laptop systemd[1]: Started Virtual Machine and Container Registration Service.
Jan 02 20:11:23 laptop systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jan 02 20:11:23 laptop avahi-daemon[764]: Failed to read /etc/avahi/services.
Jan 02 20:11:23 laptop avahi-daemon[764]: Network interface enumeration completed.
Jan 02 20:11:23 laptop avahi-daemon[764]: Server startup complete. Host name is laptop.local. Local service cookie is 856664426.
Jan 02 20:11:23 laptop avahi-daemon[764]: Got SIGHUP, reloading.
Jan 02 20:11:23 laptop avahi-daemon[764]: Failed to read /etc/avahi/services.
Jan 02 20:11:23 laptop systemd[1]: Started Bluetooth service.
Jan 02 20:11:23 laptop bluetoothd[765]: Starting SDP server
Jan 02 20:11:23 laptop systemd[1]: Started Network Manager Script Dispatcher Service.
Jan 02 20:11:23 laptop systemd[1]: Reached target Bluetooth.
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.6' (uid=0 pid=795 comm="/nix/store/4pcmdlrrpn9a3zq8dfakaip3fb817pxn-accoun" label="kernel")
Jan 02 20:11:23 laptop systemd[1]: Starting Authorization Manager...
Jan 02 20:11:23 laptop kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jan 02 20:11:23 laptop kernel: Bluetooth: BNEP socket layer initialized
Jan 02 20:11:23 laptop bluetoothd[765]: Bluetooth management interface 1.14 initialized
Jan 02 20:11:23 laptop bluetoothd[765]: profiles/sap/server.c:sap_server_register() Sap driver initialization failed.
Jan 02 20:11:23 laptop bluetoothd[765]: sap-server: Operation not permitted (1)
Jan 02 20:11:23 laptop bluetoothd[765]: Failed to set mode: Blocked through rfkill (0x12)
Jan 02 20:11:23 laptop systemd[1]: Finished resolvconf update.
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.4' (uid=0 pid=765 comm="/nix/store/ai4rhag11ld1fypd39m2qcm620s211z9-bluez-" label="kernel")
Jan 02 20:11:23 laptop systemd-logind[799]: Watching system buttons on /dev/input/event1 (Power Button)
Jan 02 20:11:23 laptop systemd-logind[799]: Watching system buttons on /dev/input/event2 (Lid Switch)
Jan 02 20:11:23 laptop systemd[1]: Started Name Service Cache Daemon.
Jan 02 20:11:23 laptop systemd[1]: Reached target Network (Pre).
Jan 02 20:11:23 laptop systemd[1]: Reached target All Network Interfaces (deprecated).
Jan 02 20:11:23 laptop systemd[1]: Starting Network Manager...
Jan 02 20:11:23 laptop systemd[1]: Starting Networking Setup...
Jan 02 20:11:23 laptop systemd[1]: Starting Hostname Service...
Jan 02 20:11:23 laptop systemd-logind[799]: Watching system buttons on /dev/input/event0 (AT Translated Set 2 keyboard)
Jan 02 20:11:23 laptop systemd[1]: Started User Login Management.
Jan 02 20:11:23 laptop polkitd[853]: Started polkitd version 0.116
Jan 02 20:11:23 laptop systemd[1]: Finished Networking Setup.
Jan 02 20:11:23 laptop systemd[1]: Started Network Manager.
Jan 02 20:11:23 laptop systemd[1]: Starting Network Manager Wait Online...
Jan 02 20:11:23 laptop systemd[1]: Starting Extra networking commands....
Jan 02 20:11:23 laptop systemd[1]: Finished Extra networking commands..
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jan 02 20:11:23 laptop systemd[1]: Reached target Network.
Jan 02 20:11:23 laptop systemd[1]: Starting Permit User Sessions...
Jan 02 20:11:23 laptop systemd[1]: Started Hostname Service.
Jan 02 20:11:23 laptop systemd[1]: Finished Permit User Sessions.
Jan 02 20:11:23 laptop systemd[1]: Starting X11 Server...
Jan 02 20:11:23 laptop systemd[1]: Started Getty on tty1.
Jan 02 20:11:23 laptop systemd[1]: Reached target Login Prompts.
Jan 02 20:11:23 laptop polkitd[853]: Loading rules from directory /etc/polkit-1/rules.d
Jan 02 20:11:23 laptop polkitd[853]: Loading rules from directory /run/current-system/sw/share/polkit-1/rules.d
Jan 02 20:11:23 laptop polkitd[853]: Finished loading, compiling and executing 6 rules
Jan 02 20:11:23 laptop kernel: RTL8211DN Gigabit Ethernet r8169-800:00: attached PHY driver [RTL8211DN Gigabit Ethernet] (mii_bus:phy_addr=r8169-800:00, irq=IGNORE)
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jan 02 20:11:23 laptop systemd[1]: Started Authorization Manager.
Jan 02 20:11:23 laptop polkitd[853]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jan 02 20:11:23 laptop accounts-daemon[795]: started daemon version 0.6.55
Jan 02 20:11:23 laptop systemd[1]: Started Accounts Service.
Jan 02 20:11:23 laptop systemd[1]: Started X11 Server.
Jan 02 20:11:23 laptop systemd[1]: Created slice user-132.slice.
Jan 02 20:11:23 laptop systemd[1]: Starting User Runtime Directory /run/user/132...
Jan 02 20:11:23 laptop systemd-logind[799]: New session c1 of user gdm.
Jan 02 20:11:23 laptop systemd[1]: Finished User Runtime Directory /run/user/132.
Jan 02 20:11:23 laptop systemd[1]: Starting User Manager for UID 132...
Jan 02 20:11:23 laptop systemd[924]: pam_unix(systemd-user:session): session opened for user gdm by (uid=0)
Jan 02 20:11:23 laptop systemd[929]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.PrintNotifications-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Smartcard-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-at\x2dspi\x2ddbus\x2dbus-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Wacom-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.A11ySettings-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-xdg\x2duser\x2ddirs-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.UsbProtection-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Color-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Housekeeping-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Sound-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dpkcs11-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Datetime-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.MediaKeys-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.XSettings-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Sharing-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.ScreensaverProxy-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Keyboard-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dsecrets-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Rfkill-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dssh-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Wwan-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-gnome\x2dinitial\x2dsetup\x2dcopy\x2dworker-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop systemd[929]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Power-autostart.service, startup phases are not supported.
Jan 02 20:11:23 laptop kernel: r8169 0000:08:00.0 enp8s0: Link is Down
Jan 02 20:11:23 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:23 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:23 laptop systemd[924]: Queued start job for default target Main User Target.
Jan 02 20:11:23 laptop systemd[924]: Reached target Paths.
Jan 02 20:11:23 laptop systemd[924]: Reached target Timers.
Jan 02 20:11:23 laptop systemd[924]: Starting D-Bus User Message Bus Socket.
Jan 02 20:11:23 laptop systemd[924]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 02 20:11:23 laptop systemd[924]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 02 20:11:23 laptop systemd[924]: Listening on Multimedia System.
Jan 02 20:11:23 laptop systemd[924]: Listening on Sound System.
Jan 02 20:11:23 laptop systemd[924]: Listening on D-Bus User Message Bus Socket.
Jan 02 20:11:23 laptop systemd[924]: Reached target Sockets.
Jan 02 20:11:23 laptop systemd[924]: Reached target Basic System.
Jan 02 20:11:23 laptop systemd[1]: Started User Manager for UID 132.
Jan 02 20:11:23 laptop systemd[924]: Started D-Bus User Message Bus.
Jan 02 20:11:23 laptop systemd[1]: Started Session c1 of user gdm.
Jan 02 20:11:23 laptop systemd[924]: Reached target Main User Target.
Jan 02 20:11:23 laptop systemd[924]: Startup finished in 223ms.
Jan 02 20:11:23 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:23 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X.Org X Server 1.20.10
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X Protocol Version 11, Revision 0
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Build Operating System: Linux 4.19.91 x86_64
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Current Operating System: Linux laptop 5.4.85 #1-NixOS SMP Mon Dec 21 12:27:07 UTC 2020 x86_64
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Kernel command line: BOOT_IMAGE=(hd0,msdos1)//kernels/9sjxii9rz89qam6qpa3hkblhhbxkmqqi-linux-5.4.85-bzImage systemConfig=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90 init=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90/init loglevel=4
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Build Date: 01 December 2020 04:33:29PM
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]:
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Current version of pixman: 0.38.4
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Before reporting problems, check http://wiki.x.org
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: to make sure that you have the latest version.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Markers: (--) probed, (**) from config file, (==) default setting,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (++) from command line, (!!) notice, (II) informational,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (++) Log file: "/dev/null", Time: Sat Jan 2 20:11:23 2021
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (++) Using config file: "/nix/store/0kj6ni38z0zgl8zp18ib124j4yzmciwg-xserver.conf"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Using config directory: "/etc/X11/xorg.conf.d"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Using system config directory "/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/share/X11/xorg.conf.d"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) ServerLayout "Layout[all]"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) |-->Screen "Screen-nvidia[0]" (0)
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) | |-->Monitor "<default monitor>"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) | |-->Device "Device-nvidia[0]"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) | |-->GPUDevice "Device-nvidia[0]"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) No monitor specified for screen "Screen-nvidia[0]".
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Using a default monitor configuration.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) |-->Inactive Device "Device-modesetting[0]"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "DontZap" "on"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "AllowMouseOpenFail" "on"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Automatically adding devices
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Automatically enabling devices
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Automatically adding GPU devices
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FontPath set to:
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/88hcl0x6g3n79xain2zhnxpxmvyp1c2q-font-bh-lucidatypewriter-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/wvr59lhhhrs85l0b93pw7pgg56kha6zp-font-bh-lucidatypewriter-75dpi-1.0.3/lib/X11/fonts/75dpi,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/6nv60a4dm7pxg8p3z2bn8ql3wpysm5kx-font-bh-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/h5jdkyb8fiag3il6lpm1a6rmpch5fgs6-font-misc-misc-1.1.2/lib/X11/fonts/misc,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/v05svs4lwwgrp12qfkvs708acd8q6sar-font-cursor-misc-1.0.3/lib/X11/fonts/misc,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/7f6k9yn93048fxv67h9yv1ib4zz2vq1n-unifont-13.0.01/share/fonts,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/srmviwfjfiyp428mcngf8617aczbmjqr-font-adobe-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: /nix/store/wpky8rn362x3mirnnp6lg7m31inj1y7m-font-adobe-75dpi-1.0.3/lib/X11/fonts/75dpi
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) ModulePath set to "/nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/drivers,/nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/extensions,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/drivers,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/extensions,/nix/store/myd78j7kl6z3kx01y7ypq7i9fd455jk4-xf86-input-evdev-2.10.6/lib/xorg/modules/input,/nix/store/4a7mahbylw7xqghpk6027rcwmnhjmd9b-xf86-input-libinput-0.28.2/lib/xorg/modules/input"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) The server relies on udev to provide the list of input devices.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: If no devices become available, reconfigure udev or disable AutoAddDevices.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loader magic: 0x625d40
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module ABI versions:
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X.Org ANSI C Emulation: 0.4
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X.Org Video Driver: 24.1
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X.Org XInput driver : 24.1
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: X.Org Server Extension : 10.0
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (++) using VT number 7
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) xfree86: Adding drm device (/dev/dri/card1)
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 15 paused 0
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) PCI:*(0@0:2:0) 8086:0116:10cf:15ea rev 9, Mem @ 0xf1000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) PCI: (1@0:0:0) 10de:0df5:10cf:164a rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00004000/128
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Open ACPI successful (/var/run/acpid.socket)
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) "glx" will be loaded by default.
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "glx"
Jan 02 20:11:23 laptop acpid[769]: client connected from 934[132:132]
Jan 02 20:11:23 laptop acpid[769]: 1 client rule loaded
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/extensions/libglx.so
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.8' (uid=0 pid=854 comm="/nix/store/219smcjiw0skqvn9jadzm7brsv8zqbyp-networ" label="kernel")
Jan 02 20:11:23 laptop systemd[1]: Starting WPA supplicant...
Jan 02 20:11:23 laptop dbus-daemon[781]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jan 02 20:11:23 laptop wpa_supplicant[935]: Successfully initialized wpa_supplicant
Jan 02 20:11:23 laptop systemd[1]: Started WPA supplicant.
Jan 02 20:11:23 laptop kernel: NET: Registered protocol family 17
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module glx: vendor="NVIDIA Corporation"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 4.0.2, module version = 1.0.0
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Module class: X.Org Server Extension
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA GLX Module 390.138 Thu May 14 03:57:24 PDT 2020
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "nvidia"
Jan 02 20:11:23 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/drivers/nvidia_drv.so
Jan 02 20:11:23 laptop wpa_supplicant[935]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module nvidia: vendor="NVIDIA Corporation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 4.0.2, module version = 1.0.0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Module class: X.Org Video Driver
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "modesetting"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/drivers/modesetting_drv.so
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module modesetting: vendor="X.Org Foundation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 1.20.10
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Module class: X.Org Video Driver
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org Video Driver, version 24.1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA dlloader X Driver 390.138 Thu May 14 03:33:57 PDT 2020
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: releasing fd for 226:0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "fb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "fb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libfb.so
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module fb: vendor="X.Org Foundation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "wfb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "wfb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libwfb.so
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module wfb: vendor="X.Org Foundation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "ramdac"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "ramdac"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module "ramdac" already built-in
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Falling back to old probe method for modesetting
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): using drv /dev/dri/card1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): Creating default Display subsection in Screen section
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: "Screen-nvidia[0]" for depth/fbbpp 24/32
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): RGB weight 888
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Default visual is TrueColor
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) NVIDIA(0): Enabling 2D acceleration
Jan 02 20:11:24 laptop kernel: NVRM: failed to enable MSI. Therefore, using PCIe virtual-wire interrupts.
Jan 02 20:11:24 laptop kernel: ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20190816/nsarguments-59)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): CRT-0 (boot)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): NVIDIA GPU GeForce GT 525M (GF108) at PCI:1:0:0 (GPU-0)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): Memory: 1048576 kBytes
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): VideoBIOS: 70.08.58.00.0a
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): Detected PCI Express Link width: 16X
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0):
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) NVIDIA(0): Option "Enable" "false"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) NVIDIA(0): Option "Ignore" "true"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) NVIDIA(0): Ignoring display device CRT-0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0):
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): will be used as the requested mode.
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0):
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): No enabled display devices found; starting anyway because
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(0): AllowEmptyInitialConfiguration is enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): Validated MetaModes:
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): "NULL"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): Unable to match display device name "CRT" from
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): nvidiaXineramaInfoOrder
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): Unable to match display device name "DFP" from
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): nvidiaXineramaInfoOrder
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): Unable to get display device for DPI computation.
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) modeset(G0): Option "AccelMethod" "none"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): RGB weight 888
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): Default visual is TrueColor
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) modeset(G0): glamor disabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): ShadowFB: preferred YES, enabled YES
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Double-buffered shadow updates: off
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Output LVDS-1-1 has no monitor section
Jan 02 20:11:24 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Output VGA-1-1 has no monitor section
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Output HDMI-1-1 has no monitor section
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Output DP-1-1 has no monitor section
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID for output LVDS-1-1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Manufacturer: LGD Model: 2dc Serial#: 0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Year: 2010 Week: 0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID Version: 1.3
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Digital Display Input
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Max Image Size [cm]: horiz.: 34 vert.: 19
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Gamma: 2.20
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): No DPMS capabilities specified
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): First detailed timing is preferred mode
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): redX: 0.623 redY: 0.369 greenX: 0.346 greenY: 0.610
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): blueX: 0.148 blueY: 0.098 whiteX: 0.313 whiteY: 0.329
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Manufacturer's mask: 0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Supported detailed timing:
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): clock: 70.0 MHz Image Size: 344 x 194 mm
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): h_active: 1366 h_sync: 1402 h_sync_end 1450 h_blank_end 1492 h_border: 0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 782 v_border: 0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): LG Display
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): LP156WH4-TLA1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID (in hex):
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 00ffffffffffff0030e4dc0200000000
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 00140103802213780aa9059f5e589c26
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 19505400000001010101010101010101
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 010101010101581b567e50000e302430
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 350058c2100000190000000000000000
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 00000000000000000000000000fe004c
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 4720446973706c61790a2020000000fe
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): 004c503135365748342d544c41310079
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Printing probed modes for output LVDS-1-1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1366x768"x60.0 70.00 1366 1402 1450 1492 768 771 776 782 -hsync -vsync (46.9 kHz eP)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jan 02 20:11:24 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Modeline "320x180"x118.6 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID for output VGA-1-1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID for output HDMI-1-1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): EDID for output DP-1-1
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): DPI set to (96, 96)
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "fb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "fb"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libfb.so
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module fb: vendor="X.Org Foundation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "shadow"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "shadow"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libshadow.so
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module shadow: vendor="X.Org Foundation"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 1.1.0
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA: access.
Jan 02 20:11:24 laptop acpid[769]: client connected from 934[132:132]
Jan 02 20:11:24 laptop acpid[769]: 1 client rule loaded
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): Setting mode "NULL"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Disabling shared memory pixmaps
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Backing store enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): Silken mouse enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) NVIDIA(0): DPMS enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) NVIDIA(0): Option "RandRRotation" is not used
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading sub module "dri2"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "dri2"
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module "dri2" already built-in
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): [DRI2] Setup complete
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): Backing store enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): Silken mouse enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (==) modeset(G0): DPMS enabled
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) modeset(G0): Option "RandRRotation" is not used
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension Generic Event Extension
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension SHAPE
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension MIT-SHM
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XInputExtension
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XTEST
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension BIG-REQUESTS
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension SYNC
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XKEYBOARD
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XC-MISC
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension SECURITY
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XFIXES
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension RENDER
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension RANDR
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension COMPOSITE
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension DAMAGE
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension MIT-SCREEN-SAVER
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension DOUBLE-BUFFER
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension RECORD
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension DPMS
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension Present
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension DRI3
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension X-Resource
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XVideo
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XVideo-MotionCompensation
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XFree86-VidModeExtension
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XFree86-DGA
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension XFree86-DRI
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension DRI2
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension GLX
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension GLX
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Indirect GLX disabled.
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension NV-GLX
Jan 02 20:11:24 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Initializing extension NV-CONTROL
Jan 02 20:11:24 laptop kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x2-0x1
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) modeset(G0): Damage tracking initialized
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[939]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[939]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[939]: > X11 cannot support keycodes above 255.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[939]: > This warning only shows for the first high keycode.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[939]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: SME: Trying to authenticate with 34:4d:ea:83:50:c4 (SSID='Home' freq=2412 MHz)
Jan 02 20:11:25 laptop kernel: wlp2s0: authenticate with 34:4d:ea:83:50:c4
Jan 02 20:11:25 laptop kernel: wlp2s0: send auth to 34:4d:ea:83:50:c4 (try 1/3)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Power Button (/dev/input/event3)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) LoadModule: "libinput"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Loading /nix/store/4a7mahbylw7xqghpk6027rcwmnhjmd9b-xf86-input-libinput-0.28.2/lib/xorg/modules/input/libinput_drv.so
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: Trying to associate with 34:4d:ea:83:50:c4 (SSID='Home' freq=2412 MHz)
Jan 02 20:11:25 laptop kernel: wlp2s0: authenticated
Jan 02 20:11:25 laptop kernel: wlp2s0: associate with 34:4d:ea:83:50:c4 (try 1/3)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Module libinput: vendor="X.Org Foundation"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: compiled for 1.20.10, module version = 0.28.2
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: Module class: X.Org XInput Driver
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: ABI class: X.Org XInput driver, version 24.1
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'Power Button'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 40 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event3"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event3"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop kernel: wlp2s0: RX AssocResp from 34:4d:ea:83:50:c4 (capab=0x411 status=0 aid=5)
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: Associated with 34:4d:ea:83:50:c4
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jan 02 20:11:25 laptop kernel: wlp2s0: associated
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[940]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[940]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[940]: > X11 cannot support keycodes above 255.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[940]: > This warning only shows for the first high keycode.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[940]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: device is a keyboard
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: WPA: Key negotiation completed with 34:4d:ea:83:50:c4 [PTK=CCMP GTK=CCMP]
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: CTRL-EVENT-CONNECTED - Connection to 34:4d:ea:83:50:c4 completed [id=0 id_str=]
Jan 02 20:11:25 laptop kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Fujitsu FUJ02E3 (/dev/input/event4)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Fujitsu FUJ02E3: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Fujitsu FUJ02E3: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Fujitsu FUJ02E3: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Fujitsu FUJ02E3: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'Fujitsu FUJ02E3'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 43 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Fujitsu FUJ02E3: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event4"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/FUJ02E3:00/input/input8/event4"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "Fujitsu FUJ02E3" (type: KEYBOARD, id 7)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Video Bus (/dev/input/event7)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'Video Bus'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 44 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event7"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input13/event7"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Video Bus (/dev/input/event6)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'Video Bus'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 45 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Video Bus: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event6"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2a/LNXVIDEO:00/input/input12/event6"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 9)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'Power Button'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 46 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Power Button: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event1"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event1"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device FJ Camera: FJ Camera (/dev/input/event5)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FJ Camera: FJ Camera: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FJ Camera: FJ Camera: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FJ Camera: FJ Camera: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FJ Camera: FJ Camera: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'FJ Camera: FJ Camera'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 47 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) FJ Camera: FJ Camera: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event5"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input11/event5"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "FJ Camera: FJ Camera" (type: KEYBOARD, id 11)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event11)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event12)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 48 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) AT Translated Set 2 keyboard: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event0"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_layout" "us"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinputConfiguration"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 49 paused 0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Device" "/dev/input/event8"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "_source" "server/udev"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: device removed
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "Tapping" "on"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "TappingDragLock" "on"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "AccelProfile" "adaptive"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "NaturalScrolling" "off"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "LeftHanded" "off"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "ScrollMethod" "twofinger"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "DisableWhileTyping" "off"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "HorizontalScrolling" "on"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event8"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "AccelerationScheme" "none"
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) This device may have been added with another device file.
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0):
Jan 02 20:11:25 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:25 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: randr: falling back to unsynchronized pixmap sharing
Jan 02 20:11:25 laptop wpa_supplicant[935]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1000
Jan 02 20:11:26 laptop dbus-daemon[931]: [session uid=132 pid=931] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.2' (uid=132 pid=962 comm="/nix/store/bk25i4kh11ciz3xkzbxl2w0j8ihkivjg-gnome-" label="kernel")
Jan 02 20:11:26 laptop systemd[924]: Starting Accessibility services bus...
Jan 02 20:11:26 laptop dbus-daemon[931]: [session uid=132 pid=931] Successfully activated service 'org.a11y.Bus'
Jan 02 20:11:26 laptop systemd[924]: Started Accessibility services bus.
Jan 02 20:11:26 laptop systemd[924]: Created slice gnome\x2dsession\x2dmanager.slice.
Jan 02 20:11:26 laptop systemd[924]: Condition check resulted in GNOME Initial Setup Copy Worker being skipped.
Jan 02 20:11:26 laptop systemd[924]: Reached target Session services which should run early before the graphical session is brought up.
Jan 02 20:11:26 laptop systemd[924]: Starting Monitor Session leader for GNOME Session...
Jan 02 20:11:26 laptop systemd[924]: Starting Sound Service...
Jan 02 20:11:26 laptop gnome-session-c[972]: Error creating FIFO: File exists
Jan 02 20:11:26 laptop systemd[924]: Started Monitor Session leader for GNOME Session.
Jan 02 20:11:26 laptop systemd[924]: Reached target Tasks to be run before GNOME Session starts.
Jan 02 20:11:26 laptop systemd[924]: Starting GNOME Session Manager (session: gnome)...
Jan 02 20:11:26 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.21' (uid=132 pid=973 comm="/nix/store/avwrsz7pdpl8knvbf400i24gdyycmsam-pulsea" label="kernel")
Jan 02 20:11:26 laptop systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jan 02 20:11:26 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Jan 02 20:11:26 laptop systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully called chroot.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully dropped privileges.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully limited resources.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Running.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Watchdog thread running.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Canary thread running.
Jan 02 20:11:26 laptop gnome-session[975]: gnome-session-binary[975]: WARNING: Could not parse desktop file orca-autostart.desktop or it references a not found TryExec binary
Jan 02 20:11:26 laptop gnome-session-binary[975]: WARNING: Could not parse desktop file orca-autostart.desktop or it references a not found TryExec binary
Jan 02 20:11:26 laptop systemd[924]: Started GNOME Session Manager (session: gnome).
Jan 02 20:11:26 laptop systemd[924]: Reached target GNOME Session Manager is ready.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully made thread 973 of process 973 owned by 'gdm' high priority at nice level -11.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Supervising 1 threads of 1 processes of 1 users.
Jan 02 20:11:26 laptop systemd[924]: Starting GNOME Shell on X11...
Jan 02 20:11:26 laptop rtkit-daemon[979]: Supervising 1 threads of 1 processes of 1 users.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully made thread 983 of process 973 owned by 'gdm' RT at priority 5.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Supervising 2 threads of 1 processes of 1 users.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Supervising 2 threads of 1 processes of 1 users.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Successfully made thread 984 of process 973 owned by 'gdm' RT at priority 5.
Jan 02 20:11:26 laptop rtkit-daemon[979]: Supervising 3 threads of 1 processes of 1 users.
Jan 02 20:11:26 laptop pulseaudio[973]: W: [pulseaudio] authkey.c: Failed to open cookie file '/run/gdm/.config/pulse/cookie': No such file or directory
Jan 02 20:11:26 laptop pulseaudio[973]: W: [pulseaudio] authkey.c: Failed to load authentication key '/run/gdm/.config/pulse/cookie': No such file or directory
Jan 02 20:11:26 laptop pulseaudio[973]: W: [pulseaudio] authkey.c: Failed to open cookie file '/run/gdm/.pulse-cookie': No such file or directory
Jan 02 20:11:26 laptop pulseaudio[973]: W: [pulseaudio] authkey.c: Failed to load authentication key '/run/gdm/.pulse-cookie': No such file or directory
Jan 02 20:11:26 laptop systemd[924]: Started Sound Service.
Jan 02 20:11:26 laptop systemd[1]: systemd-rfkill.service: Succeeded.
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0):
Jan 02 20:11:26 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:26 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (--) NVIDIA(GPU-0):
Jan 02 20:11:26 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:27 laptop .gnome-shell-wr[982]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jan 02 20:11:27 laptop .gnome-shell-wr[982]: Will monitor session c1
Jan 02 20:11:27 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.25' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:27 laptop systemd[1]: Starting Locale Service...
Jan 02 20:11:27 laptop .gnome-shell-wr[982]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jan 02 20:11:27 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.locale1'
Jan 02 20:11:27 laptop systemd[1]: Started Locale Service.
Jan 02 20:11:28 laptop dbus-daemon[931]: [session uid=132 pid=931] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.13' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop systemd[924]: Starting sandboxed app permission store...
Jan 02 20:11:28 laptop dbus-daemon[931]: [session uid=132 pid=931] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jan 02 20:11:28 laptop systemd[924]: Started sandboxed app permission store.
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1000]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1000]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1000]: > X11 cannot support keycodes above 255.
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1000]: > This warning only shows for the first high keycode.
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1000]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.25' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop systemd[1]: Starting Daemon for power management...
Jan 02 20:11:28 laptop .gnome-shell-wr[982]: Missing required core component Settings, expect trouble…
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.25' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop systemd[1]: Starting Location Lookup Service...
Jan 02 20:11:28 laptop polkitd[853]: Registered Authentication Agent for unix-session:c1 (system bus name :1.25 [/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-shell-3.36.5/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.PackageKit' unit='packagekit.service' requested by ':1.25' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop systemd[1]: Starting PackageKit Daemon...
Jan 02 20:11:28 laptop PackageKit[1015]: daemon start
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.PackageKit'
Jan 02 20:11:28 laptop systemd[1]: Started PackageKit Daemon.
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Jan 02 20:11:28 laptop systemd[1]: Started Location Lookup Service.
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.29' (uid=997 pid=1006 comm="/nix/store/lr3xnlbwjpd5k620wbc4z14l761nvc6z-geoclu" label="kernel")
Jan 02 20:11:28 laptop dbus-daemon[931]: [session uid=132 pid=931] Activating service name='org.gnome.Shell.Notifications' requested by ':1.13' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop systemd[1]: Starting Modem Manager...
Jan 02 20:11:28 laptop at-spi-bus-launcher[968]: dbus-daemon[968]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=132 pid=982 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.UPower'
Jan 02 20:11:28 laptop systemd[1]: Started Daemon for power management.
Jan 02 20:11:28 laptop at-spi-bus-launcher[968]: dbus-daemon[968]: Successfully activated service 'org.a11y.atspi.Registry'
Jan 02 20:11:28 laptop at-spi-bus-launcher[1034]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jan 02 20:11:28 laptop ModemManager[1032]: <info> ModemManager (version 1.12.10) starting in system bus...
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1046]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1046]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1046]: > X11 cannot support keycodes above 255.
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1046]: > This warning only shows for the first high keycode.
Jan 02 20:11:28 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.ModemManager1'
Jan 02 20:11:28 laptop systemd[1]: Started Modem Manager.
Jan 02 20:11:28 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1046]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:28 laptop bluetoothd[765]: Failed to set mode: Blocked through rfkill (0x12)
Jan 02 20:11:28 laptop systemd[924]: Started GNOME Shell on X11.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME Shell on X11.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME Session is initialized.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME session X11 services.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME X11 Session.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME Session (session: gnome).
Jan 02 20:11:28 laptop systemd[924]: Starting Signal initialization done to GNOME Session Manager...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Accessibility settings...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Color management...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Date & Time handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Maintenance of expirable data...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Keyboard handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Media keys handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Power management handling...
Jan 02 20:11:28 laptop gnome-session-binary[975]: Entering running state
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Printer notifications...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME RFKill handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Freedesktop screensaver handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Sharing handling...
Jan 02 20:11:28 laptop .gnome-shell-wr[982]: Error setting property 'Powered' on interface org.bluez.Adapter1: GDBus.Error:org.bluez.Error.Blocked: Blocked through rfkill (g-io-error-quark, 36)
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Smartcard handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Sound sample caching handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME Wacom handling...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME WWan management...
Jan 02 20:11:28 laptop systemd[924]: Starting GNOME XSettings...
Jan 02 20:11:28 laptop systemd[924]: gnome-session-signal-init.service: Succeeded.
Jan 02 20:11:28 laptop systemd[924]: Finished Signal initialization done to GNOME Session Manager.
Jan 02 20:11:28 laptop dbus-daemon[931]: [session uid=132 pid=931] Successfully activated service 'org.gnome.Shell.Notifications'
Jan 02 20:11:28 laptop systemd[924]: Started GNOME Accessibility settings.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME Accessibility settings.
Jan 02 20:11:28 laptop .gnome-shell-wr[982]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jan 02 20:11:28 laptop .gnome-shell-wr[982]: No permission to trigger offline updates: Polkit.Error: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Action org.freedesktop.packagekit.trigger-offline-update is not registered
Jan 02 20:11:28 laptop .gnome-shell-wr[982]: JS WARNING: [resource:///org/gnome/shell/ui/layout.js 24]: reference to undefined property "MetaWindowX11"
Jan 02 20:11:28 laptop systemd[924]: Started GNOME Maintenance of expirable data.
Jan 02 20:11:28 laptop systemd[924]: Reached target GNOME Maintenance of expirable data.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Freedesktop screensaver handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Freedesktop screensaver handling.
Jan 02 20:11:29 laptop kernel: rfkill: input handler disabled
Jan 02 20:11:29 laptop systemd[924]: Started GNOME WWan management.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME WWan management.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Printer notifications.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Printer notifications.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME RFKill handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME RFKill handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Smartcard handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Smartcard handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Sound sample caching handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Sound sample caching handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Date & Time handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Date & Time handling.
Jan 02 20:11:29 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.38' (uid=132 pid=1049 comm="/nix/store/8760i8hk4xcngrrm7cwmy3kk2k4v0v75-gnome-" label="kernel")
Jan 02 20:11:29 laptop systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jan 02 20:11:29 laptop dbus-daemon[931]: [session uid=132 pid=931] Activating service name='ca.desrt.dconf' requested by ':1.28' (uid=132 pid=1054 comm="/nix/store/8760i8hk4xcngrrm7cwmy3kk2k4v0v75-gnome-" label="kernel")
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Color management.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Wacom handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Keyboard handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Color management.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Keyboard handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Wacom handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Sharing handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Sharing handling.
Jan 02 20:11:29 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jan 02 20:11:29 laptop systemd[1]: Started Manage, Install and Generate Color Profiles.
Jan 02 20:11:29 laptop dbus-daemon[931]: [session uid=132 pid=931] Successfully activated service 'ca.desrt.dconf'
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Power management handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Power management handling.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME Media keys handling.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Media keys handling.
Jan 02 20:11:29 laptop .gnome-shell-wr[982]: Getting invalid resource scale property
Jan 02 20:11:29 laptop avahi-daemon[764]: Joining mDNS multicast group on interface wlp2s0.IPv4 with address 192.168.1.24.
Jan 02 20:11:29 laptop avahi-daemon[764]: New relevant interface wlp2s0.IPv4 for mDNS.
Jan 02 20:11:29 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.8' (uid=0 pid=854 comm="/nix/store/219smcjiw0skqvn9jadzm7brsv8zqbyp-networ" label="kernel")
Jan 02 20:11:29 laptop dbus-daemon[781]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Jan 02 20:11:29 laptop nscd[834]: 834 monitored file `/etc/resolv.conf` was written to
Jan 02 20:11:29 laptop systemd[1]: Stopping Name Service Cache Daemon...
Jan 02 20:11:29 laptop systemd[1]: nscd.service: Succeeded.
Jan 02 20:11:29 laptop avahi-daemon[764]: Got SIGHUP, reloading.
Jan 02 20:11:29 laptop avahi-daemon[764]: Failed to read /etc/avahi/services.
Jan 02 20:11:29 laptop avahi-daemon[764]: Failed to parse address 'fe80::1%wlp2s0', ignoring.
Jan 02 20:11:29 laptop systemd[1]: Stopped Name Service Cache Daemon.
Jan 02 20:11:29 laptop systemd[1]: Starting Name Service Cache Daemon...
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring file `/etc/passwd` (1)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring directory `/etc` (2)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring file `/etc/group` (3)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring directory `/etc` (2)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring file `/etc/hosts` (4)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring directory `/etc` (2)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring file `/etc/resolv.conf` (5)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring directory `/etc` (2)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring file `/etc/services` (6)
Jan 02 20:11:29 laptop nscd[1215]: 1215 monitoring directory `/etc` (2)
Jan 02 20:11:29 laptop nscd[1215]: 1215 disabled inotify-based monitoring for file `/etc/netgroup': No such file or directory
Jan 02 20:11:29 laptop nscd[1215]: 1215 stat failed for file `/etc/netgroup'; will try again later: No such file or directory
Jan 02 20:11:29 laptop systemd[1]: Started Name Service Cache Daemon.
Jan 02 20:11:29 laptop .gsd-media-keys[1055]: Failed to grab accelerator for keybinding settings:rfkill
Jan 02 20:11:29 laptop .gsd-media-keys[1055]: Failed to grab accelerator for keybinding settings:playback-repeat
Jan 02 20:11:29 laptop .gsd-media-keys[1055]: Failed to grab accelerator for keybinding settings:hibernate
Jan 02 20:11:29 laptop .gsd-media-keys[1055]: Failed to grab accelerator for keybinding settings:playback-random
Jan 02 20:11:29 laptop .colord-wrapped[1141]: failed to get session [pid 1049]: No data available
Jan 02 20:11:29 laptop systemd[1]: Finished Network Manager Wait Online.
Jan 02 20:11:29 laptop systemd[1]: Reached target Network is Online.
Jan 02 20:11:29 laptop systemd[1]: Reached target Multi-User System.
Jan 02 20:11:29 laptop systemd[1]: Reached target Graphical Interface.
Jan 02 20:11:29 laptop systemd[1]: Startup finished in 2.509s (kernel) + 9.268s (userspace) = 11.777s.
Jan 02 20:11:29 laptop systemd[924]: Started GNOME XSettings.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME XSettings.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME Session.
Jan 02 20:11:29 laptop systemd[924]: Reached target GNOME X11 Session (session: gnome).
Jan 02 20:11:29 laptop systemd[924]: Reached target Current graphical user session.
Jan 02 20:11:29 laptop systemd[924]: Condition check resulted in GNOME Initial Setup being skipped.
Jan 02 20:11:29 laptop systemd[924]: Condition check resulted in GNOME Welcome Tour being skipped.
Jan 02 20:11:29 laptop .gnome-shell-wr[982]: Registering session with GDM
Jan 02 20:11:31 laptop ModemManager[1032]: <info> Couldn't check support for device '/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0': not supported by any plugin
Jan 02 20:11:31 laptop ModemManager[1032]: <info> Couldn't check support for device '/sys/devices/pci0000:00/0000:00:1c.5/0000:08:00.0': not supported by any plugin
Jan 02 20:11:33 laptop systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Jan 02 20:11:35 laptop wpa_supplicant[935]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-22 noise=9999 txrate=40500
Jan 02 20:11:40 laptop gdm-password][1229]: gkr-pam: unable to locate daemon control file
Jan 02 20:11:40 laptop gdm-password][1229]: gkr-pam: stashed password to try later in open session
Jan 02 20:11:40 laptop gdm-password][1229]: pam_unix(gdm-password:session): session opened for user elxreno by (uid=0)
Jan 02 20:11:40 laptop systemd[1]: Created slice user-1000.slice.
Jan 02 20:11:41 laptop systemd[1]: Starting User Runtime Directory /run/user/1000...
Jan 02 20:11:41 laptop systemd-logind[799]: New session 2 of user elxreno.
Jan 02 20:11:41 laptop systemd[1]: Finished User Runtime Directory /run/user/1000.
Jan 02 20:11:41 laptop systemd[1]: Starting User Manager for UID 1000...
Jan 02 20:11:41 laptop systemd[1235]: pam_unix(systemd-user:session): session opened for user elxreno by (uid=0)
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Keyboard-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Rfkill-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Datetime-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Sound-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dsecrets-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dpkcs11-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-gnome\x2dkeyring\x2dssh-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Wwan-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-xdg\x2duser\x2ddirs-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Wacom-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.A11ySettings-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Sharing-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Smartcard-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.UsbProtection-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.XSettings-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-at\x2dspi\x2ddbus\x2dbus-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: gnome-systemd-autostart-condition not found: No such file or directory
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.PrintNotifications-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Color-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Housekeeping-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-gnome\x2dinitial\x2dsetup\x2dcopy\x2dworker-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.Power-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.ScreensaverProxy-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1240]: Not generating service for XDG autostart app-org.gnome.SettingsDaemon.MediaKeys-autostart.service, startup phases are not supported.
Jan 02 20:11:41 laptop systemd[1235]: Queued start job for default target Main User Target.
Jan 02 20:11:41 laptop systemd[1235]: Reached target Paths.
Jan 02 20:11:41 laptop systemd[1235]: Reached target Timers.
Jan 02 20:11:41 laptop systemd[1235]: Starting D-Bus User Message Bus Socket.
Jan 02 20:11:41 laptop systemd[1235]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 02 20:11:41 laptop systemd[1235]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 02 20:11:41 laptop systemd[1235]: Listening on Multimedia System.
Jan 02 20:11:41 laptop systemd[1235]: Listening on Sound System.
Jan 02 20:11:41 laptop systemd[1235]: Listening on D-Bus User Message Bus Socket.
Jan 02 20:11:41 laptop systemd[1235]: Reached target Sockets.
Jan 02 20:11:41 laptop systemd[1235]: Reached target Basic System.
Jan 02 20:11:41 laptop systemd[1]: Started User Manager for UID 1000.
Jan 02 20:11:41 laptop systemd[1235]: Started D-Bus User Message Bus.
Jan 02 20:11:41 laptop systemd[1]: Started Session 2 of user elxreno.
Jan 02 20:11:41 laptop systemd[1235]: Reached target Main User Target.
Jan 02 20:11:41 laptop systemd[1235]: Startup finished in 170ms.
Jan 02 20:11:41 laptop gdm-password][1229]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "40"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event3 - Power Button: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "43"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event4 - Fujitsu FUJ02E3: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "44"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event7 - Video Bus: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "45"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event6 - Video Bus: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "46"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event1 - Power Button: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "47"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event5 - FJ Camera: FJ Camera: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "48"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event0 - AT Translated Set 2 keyboard: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (**) Option "fd" "49"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) event8 - SynPS/2 Synaptics TouchPad: device removed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:71
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:67
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:69
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:70
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:64
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:68
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:65
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 13:72
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[934]: (II) systemd-logind: got pause for 226:1
Jan 02 20:11:41 laptop kernel: rfkill: input handler enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: _XSERVTransMakeAllCOTSServerListeners: server already running
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X.Org X Server 1.20.10
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X Protocol Version 11, Revision 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Build Operating System: Linux 4.19.91 x86_64
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Current Operating System: Linux laptop 5.4.85 #1-NixOS SMP Mon Dec 21 12:27:07 UTC 2020 x86_64
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Kernel command line: BOOT_IMAGE=(hd0,msdos1)//kernels/9sjxii9rz89qam6qpa3hkblhhbxkmqqi-linux-5.4.85-bzImage systemConfig=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90 init=/nix/store/9bazbcl2cgd0mhvj11ylhkxbh26yywm6-nixos-system-laptop-20.09.2405.e065200fc90/init loglevel=4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Build Date: 01 December 2020 04:33:29PM
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]:
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Current version of pixman: 0.38.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Before reporting problems, check http://wiki.x.org
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: to make sure that you have the latest version.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Markers: (--) probed, (**) from config file, (==) default setting,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (++) from command line, (!!) notice, (II) informational,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (++) Log file: "/dev/null", Time: Sat Jan 2 20:11:41 2021
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (++) Using config file: "/nix/store/0kj6ni38z0zgl8zp18ib124j4yzmciwg-xserver.conf"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Using config directory: "/etc/X11/xorg.conf.d"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Using system config directory "/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/share/X11/xorg.conf.d"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) ServerLayout "Layout[all]"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) |-->Screen "Screen-nvidia[0]" (0)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) | |-->Monitor "<default monitor>"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) | |-->Device "Device-nvidia[0]"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) | |-->GPUDevice "Device-nvidia[0]"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) No monitor specified for screen "Screen-nvidia[0]".
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Using a default monitor configuration.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) |-->Inactive Device "Device-modesetting[0]"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "DontZap" "on"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "AllowMouseOpenFail" "on"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Automatically adding devices
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Automatically enabling devices
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Automatically adding GPU devices
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FontPath set to:
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/88hcl0x6g3n79xain2zhnxpxmvyp1c2q-font-bh-lucidatypewriter-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/wvr59lhhhrs85l0b93pw7pgg56kha6zp-font-bh-lucidatypewriter-75dpi-1.0.3/lib/X11/fonts/75dpi,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/6nv60a4dm7pxg8p3z2bn8ql3wpysm5kx-font-bh-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/h5jdkyb8fiag3il6lpm1a6rmpch5fgs6-font-misc-misc-1.1.2/lib/X11/fonts/misc,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/v05svs4lwwgrp12qfkvs708acd8q6sar-font-cursor-misc-1.0.3/lib/X11/fonts/misc,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/7f6k9yn93048fxv67h9yv1ib4zz2vq1n-unifont-13.0.01/share/fonts,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/srmviwfjfiyp428mcngf8617aczbmjqr-font-adobe-100dpi-1.0.3/lib/X11/fonts/100dpi,
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: /nix/store/wpky8rn362x3mirnnp6lg7m31inj1y7m-font-adobe-75dpi-1.0.3/lib/X11/fonts/75dpi
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) ModulePath set to "/nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/drivers,/nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/extensions,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/drivers,/nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/extensions,/nix/store/myd78j7kl6z3kx01y7ypq7i9fd455jk4-xf86-input-evdev-2.10.6/lib/xorg/modules/input,/nix/store/4a7mahbylw7xqghpk6027rcwmnhjmd9b-xf86-input-libinput-0.28.2/lib/xorg/modules/input"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) The server relies on udev to provide the list of input devices.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: If no devices become available, reconfigure udev or disable AutoAddDevices.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loader magic: 0x625d40
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module ABI versions:
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X.Org ANSI C Emulation: 0.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X.Org Video Driver: 24.1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X.Org XInput driver : 24.1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: X.Org Server Extension : 10.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (++) using VT number 2
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_32
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 15 paused 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) xfree86: Adding drm device (/dev/dri/card1)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 16 paused 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) PCI:*(0@0:2:0) 8086:0116:10cf:15ea rev 9, Mem @ 0xf1000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) PCI: (1@0:0:0) 10de:0df5:10cf:164a rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00004000/128
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Open ACPI successful (/var/run/acpid.socket)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) "glx" will be loaded by default.
Jan 02 20:11:41 laptop acpid[769]: client 934[132:132] has disconnected
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "glx"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/extensions/libglx.so
Jan 02 20:11:41 laptop acpid[769]: client 934[132:132] has disconnected
Jan 02 20:11:41 laptop acpid[769]: client connected from 1250[1000:100]
Jan 02 20:11:41 laptop acpid[769]: 1 client rule loaded
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module glx: vendor="NVIDIA Corporation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 4.0.2, module version = 1.0.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Module class: X.Org Server Extension
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA GLX Module 390.138 Thu May 14 03:57:24 PDT 2020
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "nvidia"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/1snhg82s66sb003r0pbp6vj1nzmi60s7-nvidia-x11-390.138-5.4.85-bin/lib/xorg/modules/drivers/nvidia_drv.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module nvidia: vendor="NVIDIA Corporation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 4.0.2, module version = 1.0.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Module class: X.Org Video Driver
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "modesetting"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/drivers/modesetting_drv.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module modesetting: vendor="X.Org Foundation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 1.20.10
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Module class: X.Org Video Driver
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org Video Driver, version 24.1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA dlloader X Driver 390.138 Thu May 14 03:33:57 PDT 2020
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: releasing fd for 226:0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "fb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "fb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libfb.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module fb: vendor="X.Org Foundation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "wfb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "wfb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libwfb.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module wfb: vendor="X.Org Foundation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "ramdac"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "ramdac"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module "ramdac" already built-in
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Falling back to old probe method for modesetting
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): using drv /dev/dri/card1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): Creating default Display subsection in Screen section
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: "Screen-nvidia[0]" for depth/fbbpp 24/32
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): RGB weight 888
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Default visual is TrueColor
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) NVIDIA(0): Enabling 2D acceleration
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): CRT-0 (boot)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): NVIDIA GPU GeForce GT 525M (GF108) at PCI:1:0:0 (GPU-0)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): Memory: 1048576 kBytes
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): VideoBIOS: 70.08.58.00.0a
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): Detected PCI Express Link width: 16X
Jan 02 20:11:41 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0):
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) NVIDIA(0): Option "Enable" "false"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) NVIDIA(0): Option "Ignore" "true"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) NVIDIA(0): Ignoring display device CRT-0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0):
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): will be used as the requested mode.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0):
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): No enabled display devices found; starting anyway because
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(0): AllowEmptyInitialConfiguration is enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): Validated MetaModes:
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): "NULL"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): Unable to match display device name "CRT" from
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): nvidiaXineramaInfoOrder
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): Unable to match display device name "DFP" from
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): nvidiaXineramaInfoOrder
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): Unable to get display device for DPI computation.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) modeset(G0): Option "AccelMethod" "none"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): RGB weight 888
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): Default visual is TrueColor
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) modeset(G0): glamor disabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): ShadowFB: preferred YES, enabled YES
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Double-buffered shadow updates: off
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Output LVDS-1-1 has no monitor section
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Output VGA-1-1 has no monitor section
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Output HDMI-1-1 has no monitor section
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Output DP-1-1 has no monitor section
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID for output LVDS-1-1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Manufacturer: LGD Model: 2dc Serial#: 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Year: 2010 Week: 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID Version: 1.3
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Digital Display Input
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Max Image Size [cm]: horiz.: 34 vert.: 19
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Gamma: 2.20
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): No DPMS capabilities specified
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): First detailed timing is preferred mode
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): redX: 0.623 redY: 0.369 greenX: 0.346 greenY: 0.610
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): blueX: 0.148 blueY: 0.098 whiteX: 0.313 whiteY: 0.329
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Manufacturer's mask: 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Supported detailed timing:
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): clock: 70.0 MHz Image Size: 344 x 194 mm
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): h_active: 1366 h_sync: 1402 h_sync_end 1450 h_blank_end 1492 h_border: 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): v_active: 768 v_sync: 771 v_sync_end 776 v_blanking: 782 v_border: 0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): LG Display
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): LP156WH4-TLA1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID (in hex):
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 00ffffffffffff0030e4dc0200000000
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 00140103802213780aa9059f5e589c26
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 19505400000001010101010101010101
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 010101010101581b567e50000e302430
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 350058c2100000190000000000000000
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 00000000000000000000000000fe004c
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 4720446973706c61790a2020000000fe
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): 004c503135365748342d544c41310079
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Printing probed modes for output LVDS-1-1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1366x768"x60.0 70.00 1366 1402 1450 1492 768 771 776 782 -hsync -vsync (46.9 kHz eP)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Modeline "320x180"x118.6 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID for output VGA-1-1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID for output HDMI-1-1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): EDID for output DP-1-1
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): DPI set to (96, 96)
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "fb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "fb"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libfb.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module fb: vendor="X.Org Foundation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 1.0.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "shadow"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "shadow"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/x5wlrdy91hd4lqzcz9y5sh532n2awp18-xorg-server-1.20.10/lib/xorg/modules/libshadow.so
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module shadow: vendor="X.Org Foundation"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 1.1.0
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org ANSI C Emulation, version 0.4
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA: access.
Jan 02 20:11:41 laptop acpid[769]: client connected from 1250[1000:100]
Jan 02 20:11:41 laptop acpid[769]: 1 client rule loaded
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): Setting mode "NULL"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Disabling shared memory pixmaps
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Backing store enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): Silken mouse enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) NVIDIA(0): DPMS enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) NVIDIA(0): Option "RandRRotation" is not used
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading sub module "dri2"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "dri2"
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module "dri2" already built-in
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): [DRI2] Setup complete
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): Backing store enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): Silken mouse enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (==) modeset(G0): DPMS enabled
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) modeset(G0): Option "RandRRotation" is not used
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension Generic Event Extension
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension SHAPE
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension MIT-SHM
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XInputExtension
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XTEST
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension BIG-REQUESTS
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension SYNC
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XKEYBOARD
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XC-MISC
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension SECURITY
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XFIXES
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension RENDER
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension RANDR
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension COMPOSITE
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension DAMAGE
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension MIT-SCREEN-SAVER
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension DOUBLE-BUFFER
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension RECORD
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension DPMS
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension Present
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension DRI3
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension X-Resource
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XVideo
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XVideo-MotionCompensation
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XFree86-VidModeExtension
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XFree86-DGA
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension XFree86-DRI
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension DRI2
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension GLX
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension GLX
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Indirect GLX disabled.
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension NV-GLX
Jan 02 20:11:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Initializing extension NV-CONTROL
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) modeset(G0): Damage tracking initialized
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1251]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1251]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1251]: > X11 cannot support keycodes above 255.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1251]: > This warning only shows for the first high keycode.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1251]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Power Button (/dev/input/event3)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) LoadModule: "libinput"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Loading /nix/store/4a7mahbylw7xqghpk6027rcwmnhjmd9b-xf86-input-libinput-0.28.2/lib/xorg/modules/input/libinput_drv.so
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Module libinput: vendor="X.Org Foundation"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: compiled for 1.20.10, module version = 0.28.2
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: Module class: X.Org XInput Driver
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: ABI class: X.Org XInput driver, version 24.1
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'Power Button'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 41 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event3"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event3"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1252]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1252]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1252]: > X11 cannot support keycodes above 255.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1252]: > This warning only shows for the first high keycode.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1252]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Fujitsu FUJ02E3 (/dev/input/event4)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Fujitsu FUJ02E3: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Fujitsu FUJ02E3: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Fujitsu FUJ02E3: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Fujitsu FUJ02E3: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'Fujitsu FUJ02E3'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 44 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Fujitsu FUJ02E3: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event4"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/FUJ02E3:00/input/input8/event4"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "Fujitsu FUJ02E3" (type: KEYBOARD, id 7)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Video Bus (/dev/input/event7)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'Video Bus'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 45 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event7"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input13/event7"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Video Bus (/dev/input/event6)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'Video Bus'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 46 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Video Bus: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event6"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2a/LNXVIDEO:00/input/input12/event6"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 9)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'Power Button'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 47 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Power Button: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event1"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event1"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device FJ Camera: FJ Camera (/dev/input/event5)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FJ Camera: FJ Camera: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FJ Camera: FJ Camera: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FJ Camera: FJ Camera: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FJ Camera: FJ Camera: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'FJ Camera: FJ Camera'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 48 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) FJ Camera: FJ Camera: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event5"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input11/event5"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "FJ Camera: FJ Camera" (type: KEYBOARD, id 11)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event11)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event12)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 49 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) AT Translated Set 2 keyboard: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event0"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_model" "pc104"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_layout" "us"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (WW) Option "xkb_variant" requires a string value
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "xkb_options" "eurosign:e"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: device is a keyboard
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinputConfiguration"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 50 paused 0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Device" "/dev/input/event8"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "_source" "server/udev"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: device removed
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "Tapping" "on"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "TappingDragLock" "on"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "AccelProfile" "adaptive"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "NaturalScrolling" "off"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "SendEventsMode" "enabled"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "LeftHanded" "off"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "ScrollMethod" "twofinger"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "DisableWhileTyping" "off"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "HorizontalScrolling" "on"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event8"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "AccelerationScheme" "none"
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) No input driver specified, ignoring this device.
Jan 02 20:11:42 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) This device may have been added with another device file.
Jan 02 20:11:42 laptop systemd[1235]: Reached target Current graphical user session.
Jan 02 20:11:42 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.2' (uid=1000 pid=1265 comm="/nix/store/mi29zyfnc9gdj18f73f025rmp725mp0h-glib-2" label="kernel")
Jan 02 20:11:42 laptop systemd[1235]: Starting Virtual filesystem service...
Jan 02 20:11:42 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.Daemon'
Jan 02 20:11:42 laptop systemd[1235]: Started Virtual filesystem service.
Jan 02 20:11:42 laptop kernel: fuse: init (API version 7.31)
Jan 02 20:11:42 laptop systemd[1]: Mounting FUSE Control File System...
Jan 02 20:11:42 laptop systemd[1]: Mounted FUSE Control File System.
Jan 02 20:11:42 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.6' (uid=1000 pid=1287 comm="/nix/store/bk25i4kh11ciz3xkzbxl2w0j8ihkivjg-gnome-" label="kernel")
Jan 02 20:11:42 laptop systemd[1235]: Starting Accessibility services bus...
Jan 02 20:11:42 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.a11y.Bus'
Jan 02 20:11:42 laptop systemd[1235]: Started Accessibility services bus.
Jan 02 20:11:42 laptop systemd[1235]: Created slice gnome\x2dsession\x2dmanager.slice.
Jan 02 20:11:42 laptop systemd[1235]: Started GNOME Initial Setup Copy Worker.
Jan 02 20:11:42 laptop systemd[1235]: Reached target Session services which should run early before the graphical session is brought up.
Jan 02 20:11:42 laptop systemd[1235]: Starting Monitor Session leader for GNOME Session...
Jan 02 20:11:42 laptop systemd[1235]: Starting Sound Service...
Jan 02 20:11:42 laptop gnome-session-c[1298]: Error creating FIFO: File exists
Jan 02 20:11:42 laptop systemd[1235]: Started Monitor Session leader for GNOME Session.
Jan 02 20:11:42 laptop systemd[1235]: Reached target Tasks to be run before GNOME Session starts.
Jan 02 20:11:42 laptop systemd[1235]: Starting GNOME Session Manager (session: gnome)...
Jan 02 20:11:42 laptop systemd[1235]: gnome-initial-setup-copy-worker.service: Succeeded.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Successfully made thread 1299 of process 1299 owned by '1000' high priority at nice level -11.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Supervising 4 threads of 2 processes of 2 users.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Supervising 4 threads of 2 processes of 2 users.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Successfully made thread 1306 of process 1299 owned by '1000' RT at priority 5.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Supervising 5 threads of 2 processes of 2 users.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Supervising 5 threads of 2 processes of 2 users.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Successfully made thread 1307 of process 1299 owned by '1000' RT at priority 5.
Jan 02 20:11:42 laptop rtkit-daemon[979]: Supervising 6 threads of 2 processes of 2 users.
Jan 02 20:11:42 laptop gnome-keyring-ssh.desktop[1317]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jan 02 20:11:42 laptop systemd[1235]: Started GNOME Session Manager (session: gnome).
Jan 02 20:11:42 laptop systemd[1235]: Reached target GNOME Session Manager is ready.
Jan 02 20:11:42 laptop systemd[1235]: Starting GNOME Shell on X11...
Jan 02 20:11:43 laptop systemd[1235]: Started Sound Service.
Jan 02 20:11:43 laptop bluetoothd[765]: Endpoint registered: sender=:1.57 path=/MediaEndpoint/A2DPSink/sbc
Jan 02 20:11:43 laptop bluetoothd[765]: Endpoint registered: sender=:1.57 path=/MediaEndpoint/A2DPSource/sbc
Jan 02 20:11:43 laptop kernel: Bluetooth: RFCOMM TTY layer initialized
Jan 02 20:11:43 laptop kernel: Bluetooth: RFCOMM socket layer initialized
Jan 02 20:11:43 laptop kernel: Bluetooth: RFCOMM ver 1.11
Jan 02 20:11:43 laptop kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device VGA-0
Jan 02 20:11:43 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0): CRT-0: connected
Jan 02 20:11:43 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
Jan 02 20:11:43 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (--) NVIDIA(GPU-0):
Jan 02 20:11:43 laptop .gnome-shell-wr[1319]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jan 02 20:11:43 laptop .gnome-shell-wr[1319]: Will monitor session 2
Jan 02 20:11:44 laptop .gnome-shell-wr[1319]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop systemd[1235]: Starting sandboxed app permission store...
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='org.gnome.Shell.CalendarServer' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jan 02 20:11:44 laptop systemd[1235]: Started sandboxed app permission store.
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.24' (uid=1000 pid=1337 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop systemd[1235]: Starting Evolution source registry...
Jan 02 20:11:44 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1344]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jan 02 20:11:44 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1344]: > Warning: Unsupported high keycode 372 for name <I372> ignored
Jan 02 20:11:44 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1344]: > X11 cannot support keycodes above 255.
Jan 02 20:11:44 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1344]: > This warning only shows for the first high keycode.
Jan 02 20:11:44 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1344]: Errors from xkbcomp are not fatal to the X server
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='org.gnome.OnlineAccounts' requested by ':1.26' (uid=1000 pid=1347 comm="/nix/store/z9z7iaxgv0pshkcg6nhx3kajd25z9nwf-evolut" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Jan 02 20:11:44 laptop systemd[1235]: Started Evolution source registry.
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.24' (uid=1000 pid=1337 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop systemd[1235]: Starting Evolution calendar service...
Jan 02 20:11:44 laptop polkitd[853]: Registered Authentication Agent for unix-session:2 (system bus name :1.58 [/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-shell-3.36.5/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.Shell.CalendarServer'
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='org.freedesktop.Telepathy.AccountManager' requested by ':1.27' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop systemd[1235]: Starting Virtual filesystem service - disk device monitor...
Jan 02 20:11:44 laptop .goa-daemon-wra[1353]: goa-daemon version 3.36.0 starting
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.freedesktop.Telepathy.AccountManager'
Jan 02 20:11:44 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.60' (uid=1000 pid=1360 comm="/nix/store/3xa249gc4jmjfc73r87qcqambmkmlf13-gvfs-1" label="kernel")
Jan 02 20:11:44 laptop systemd[1]: Starting Disk Manager...
Jan 02 20:11:44 laptop udisksd[1371]: udisks daemon version 2.8.4 starting
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='org.gnome.Identity' requested by ':1.33' (uid=1000 pid=1353 comm="/nix/store/gwwqy5qnqc75hmcl8h458i47nppprqr3-gnome-" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Jan 02 20:11:44 laptop systemd[1235]: Started Evolution calendar service.
Jan 02 20:11:44 laptop udisksd[1371]: Failed to load config files: Failed to get contents of the config dir (/etc/libblockdev/conf.d/)Error opening directory “/etc/libblockdev/conf.d/”: No such file or directory. Using the built-in config
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.OnlineAccounts'
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='ca.desrt.dconf' requested by ':1.31' (uid=1000 pid=1356 comm="/nix/store/z9z7iaxgv0pshkcg6nhx3kajd25z9nwf-evolut" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.31' (uid=1000 pid=1356 comm="/nix/store/z9z7iaxgv0pshkcg6nhx3kajd25z9nwf-evolut" label="kernel")
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.Identity'
Jan 02 20:11:44 laptop systemd[1235]: Starting Evolution address book service...
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'ca.desrt.dconf'
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Jan 02 20:11:44 laptop systemd[1235]: Started Evolution address book service.
Jan 02 20:11:44 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jan 02 20:11:44 laptop systemd[1]: Started Disk Manager.
Jan 02 20:11:44 laptop udisksd[1371]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jan 02 20:11:44 laptop systemd[1235]: Started Virtual filesystem service - disk device monitor.
Jan 02 20:11:44 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:44 laptop systemd[1235]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jan 02 20:11:45 laptop systemd[1235]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:45 laptop systemd[1235]: Starting Virtual filesystem service - digital camera monitor...
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jan 02 20:11:45 laptop systemd[1235]: Started Virtual filesystem service - digital camera monitor.
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:45 laptop systemd[1235]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jan 02 20:11:45 laptop systemd[1235]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:45 laptop systemd[1235]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jan 02 20:11:45 laptop systemd[1235]: Started Virtual filesystem service - Apple File Conduit monitor.
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating service name='org.gnome.Shell.Notifications' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:45 laptop at-spi-bus-launcher[1294]: dbus-daemon[1294]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:11:45 laptop at-spi-bus-launcher[1294]: dbus-daemon[1294]: Successfully activated service 'org.a11y.atspi.Registry'
Jan 02 20:11:45 laptop at-spi-bus-launcher[1436]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Shell on X11.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Shell on X11.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Session is initialized.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME session X11 services.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME X11 Session.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Session (session: gnome).
Jan 02 20:11:45 laptop systemd[1235]: Starting Signal initialization done to GNOME Session Manager...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Accessibility settings...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Color management...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Date & Time handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Maintenance of expirable data...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Keyboard handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Media keys handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Power management handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Printer notifications...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME RFKill handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Freedesktop screensaver handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Sharing handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Smartcard handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Sound sample caching handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME Wacom handling...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME WWan management...
Jan 02 20:11:45 laptop systemd[1235]: Starting GNOME XSettings...
Jan 02 20:11:45 laptop gnome-session-binary[1301]: Entering running state
Jan 02 20:11:45 laptop systemd[1235]: gnome-session-signal-init.service: Succeeded.
Jan 02 20:11:45 laptop systemd[1235]: Finished Signal initialization done to GNOME Session Manager.
Jan 02 20:11:45 laptop .tracker-extrac[1468]: Set scheduler policy to SCHED_IDLE
Jan 02 20:11:45 laptop .tracker-extrac[1468]: Setting priority nice level to 19
Jan 02 20:11:45 laptop .tracker-miner-[1479]: Set scheduler policy to SCHED_IDLE
Jan 02 20:11:45 laptop .tracker-miner-[1479]: Setting priority nice level to 19
Jan 02 20:11:45 laptop kernel: rfkill: input handler disabled
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Freedesktop screensaver handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Freedesktop screensaver handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME RFKill handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME RFKill handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Accessibility settings.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Accessibility settings.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME WWan management.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME WWan management.
Jan 02 20:11:45 laptop .gnome-shell-wr[1319]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jan 02 20:11:45 laptop .gnome-shell-wr[1319]: No permission to trigger offline updates: Polkit.Error: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Action org.freedesktop.packagekit.trigger-offline-update is not registered
Jan 02 20:11:45 laptop .gnome-shell-wr[1319]: JS WARNING: [resource:///org/gnome/shell/ui/layout.js 24]: reference to undefined property "MetaWindowX11"
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.freedesktop.Tracker1' unit='tracker-store.service' requested by ':1.63' (uid=1000 pid=1484 comm="/nix/store/mi29zyfnc9gdj18f73f025rmp725mp0h-glib-2" label="kernel")
Jan 02 20:11:45 laptop systemd[1235]: Starting Tracker metadata database store and lookup manager...
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gnome.Shell.Notifications'
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Maintenance of expirable data.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Maintenance of expirable data.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Printer notifications.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Printer notifications.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Smartcard handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Smartcard handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Sound sample caching handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Sound sample caching handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Wacom handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Wacom handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Sharing handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Sharing handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Keyboard handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Color management.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Media keys handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Color management.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Keyboard handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Media keys handling.
Jan 02 20:11:45 laptop systemd[1235]: Started GNOME Power management handling.
Jan 02 20:11:45 laptop systemd[1235]: Reached target GNOME Power management handling.
Jan 02 20:11:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.freedesktop.Tracker1'
Jan 02 20:11:45 laptop systemd[1235]: Started Tracker metadata database store and lookup manager.
Jan 02 20:11:45 laptop tracker-store.desktop[1484]: (uint32 1,)
Jan 02 20:11:46 laptop systemd[1235]: Started GNOME Date & Time handling.
Jan 02 20:11:46 laptop systemd[1235]: Reached target GNOME Date & Time handling.
Jan 02 20:11:46 laptop .gsd-media-keys[1450]: Failed to grab accelerator for keybinding settings:playback-repeat
Jan 02 20:11:46 laptop .gsd-media-keys[1450]: Failed to grab accelerator for keybinding settings:hibernate
Jan 02 20:11:46 laptop .gsd-media-keys[1450]: Failed to grab accelerator for keybinding settings:playback-random
Jan 02 20:11:46 laptop .gsd-media-keys[1450]: Failed to grab accelerator for keybinding settings:rfkill
Jan 02 20:11:46 laptop systemd[1235]: Started GNOME XSettings.
Jan 02 20:11:46 laptop systemd[1235]: Reached target GNOME XSettings.
Jan 02 20:11:46 laptop systemd[1235]: Reached target GNOME Session.
Jan 02 20:11:46 laptop systemd[1235]: Reached target GNOME X11 Session (session: gnome).
Jan 02 20:11:46 laptop systemd[1235]: Starting GNOME Initial Setup...
Jan 02 20:11:46 laptop .gnome-initial-[1589]: Starting gnome-initial-setup
Jan 02 20:11:46 laptop .gnome-initial-[1589]: Production mode: changes will be saved to disk
Jan 02 20:11:48 laptop nscd[1215]: 1215 checking for monitored file `/etc/netgroup': No such file or directory
Jan 02 20:11:49 laptop dbus-daemon[781]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.79' (uid=1000 pid=1589 comm="/nix/store/917j4cx406kj6snd9b35i74hjnyhxk11-gnome-" label="kernel")
Jan 02 20:11:49 laptop systemd[1]: Starting Time & Date Service...
Jan 02 20:11:49 laptop dbus-daemon[781]: [system] Successfully activated service 'org.freedesktop.timedate1'
Jan 02 20:11:49 laptop systemd[1]: Started Time & Date Service.
Jan 02 20:11:49 laptop .gnome-initial-[1589]: Could not find signal handler 'webcam_icon_selected'. Did you compile with -rdynamic?
Jan 02 20:11:51 laptop systemd-timesyncd[576]: Initial synchronization to time server 212.13.97.55:123 (2.nixos.pool.ntp.org).
Jan 02 20:11:51 laptop gnome-shell[1319]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1600007
Jan 02 20:12:12 laptop NetworkManager[854]: <warn> [1609607532.1400] dhcp6 (wlp2s0): request timed out
Jan 02 20:12:15 laptop systemd[1]: systemd-hostnamed.service: Succeeded.
Jan 02 20:12:16 laptop tracker-store[1529]: OK
Jan 02 20:12:16 laptop systemd[1235]: tracker-store.service: Succeeded.
Jan 02 20:12:18 laptop systemd[1]: systemd-timedated.service: Succeeded.
Jan 02 20:12:21 laptop systemd[1]: systemd-localed.service: Succeeded.
Jan 02 20:12:28 laptop .geoclue-wrappe[1006]: Service not used for 60 seconds. Shutting down..
Jan 02 20:12:28 laptop systemd[1]: geoclue.service: Succeeded.
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "41"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event3 - Power Button: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "44"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event4 - Fujitsu FUJ02E3: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "45"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event7 - Video Bus: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "46"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event6 - Video Bus: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "47"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event1 - Power Button: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "48"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event5 - FJ Camera: FJ Camera: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "49"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event0 - AT Translated Set 2 keyboard: device removed
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (**) Option "fd" "50"
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) event8 - SynPS/2 Synaptics TouchPad: device removed
Jan 02 20:12:41 laptop kernel: rfkill: input handler enabled
Jan 02 20:12:41 laptop acpid[769]: client 1250[1000:100] has disconnected
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:71
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:70
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:64
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:72
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 226:1
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:68
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:69
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:65
Jan 02 20:12:41 laptop /nix/store/24wca2g1kfb0dc6jks8cz5bnbawqjmhb-gdm-3.34.1/libexec/gdm-x-session[1250]: (II) systemd-logind: got pause for 13:67
Jan 02 20:12:41 laptop systemd[1]: Started Getty on tty3.
Jan 02 20:12:41 laptop acpid[769]: client 1250[1000:100] has disconnected
Jan 02 20:12:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.22' (uid=1000 pid=1319 comm="/nix/store/wwfx5mplaxff36ygqx73iz72vkckg8hy-gnome-" label="kernel")
Jan 02 20:12:45 laptop systemd[1235]: Starting Virtual filesystem metadata service...
Jan 02 20:12:45 laptop dbus-daemon[1242]: [session uid=1000 pid=1242] Successfully activated service 'org.gtk.vfs.Metadata'
Jan 02 20:12:45 laptop systemd[1235]: Started Virtual filesystem metadata service.
Jan 02 20:12:45 laptop login[1628]: gkr-pam: unable to locate daemon control file
Jan 02 20:12:45 laptop login[1628]: gkr-pam: stashed password to try later in open session
Jan 02 20:12:45 laptop login[1628]: pam_unix(login:session): session opened for user elxreno by LOGIN(uid=0)
Jan 02 20:12:45 laptop systemd-logind[799]: New session 4 of user elxreno.
Jan 02 20:12:45 laptop systemd[1]: Started Session 4 of user elxreno.
Jan 02 20:12:45 laptop login[1628]: gkr-pam: unlocked login keyring
Jan 02 20:12:46 laptop systemd[1235]: Started GnuPG cryptographic agent and passphrase cache.
Jan 02 20:12:46 laptop gpg-agent[1642]: gpg-agent (GnuPG) 2.2.23 starting in supervised mode.
Jan 02 20:12:46 laptop gpg-agent[1642]: using fd 3 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Jan 02 20:12:46 laptop gpg-agent[1642]: using fd 4 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Jan 02 20:12:46 laptop gpg-agent[1642]: listening on: std=3 extra=-1 browser=-1 ssh=4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment