From 6b93a1a095638991ae17928d2b681d9b38bc5bf7 Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Tue, 19 Aug 2025 19:28:36 +0100 Subject: [PATCH] nix/gnome-graphical-test: fix pkgs references to updated names --- nix/gnome-graphical-test.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/gnome-graphical-test.nix b/nix/gnome-graphical-test.nix index 95b7235..4c83cd1 100644 --- a/nix/gnome-graphical-test.nix +++ b/nix/gnome-graphical-test.nix @@ -20,8 +20,8 @@ # Set a nice desktop background that is pleasing to the eyes :3 extraGSettingsOverrides = '' [org.gnome.desktop.background] - picture-uri='file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/blobs-l.svg' - picture-uri-dark='file://${pkgs.gnome.gnome-backgrounds}/share/backgrounds/gnome/blobs-l.svg' + picture-uri='file://${pkgs.gnome-backgrounds}/share/backgrounds/gnome/blobs-l.svg' + picture-uri-dark='file://${pkgs.gnome-backgrounds}/share/backgrounds/gnome/blobs-l.svg' ''; }; displayManager = { @@ -100,7 +100,7 @@ # Eval API is now internal so Shell needs to run in unsafe mode. # TODO: improve test driver so that it supports openqa-like manipulation # that would allow us to drop this mess. - "${pkgs.gnome.gnome-shell}/bin/gnome-shell --unsafe-mode" + "${pkgs.gnome-shell}/bin/gnome-shell --unsafe-mode" ]; }; };