From a3d3b155071b3c8f48c5b63c208a7c14f87669af Mon Sep 17 00:00:00 2001 From: DashieTM Date: Sun, 8 Sep 2024 13:50:08 +0200 Subject: [PATCH] Move gnome-settings to top level --- base/common_hardware.nix | 13 +++++++------ modules/conf.nix | 2 +- modules/programs/gnome_services.nix | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/base/common_hardware.nix b/base/common_hardware.nix index 58e630d..101a0a7 100644 --- a/base/common_hardware.nix +++ b/base/common_hardware.nix @@ -1,9 +1,10 @@ -{ pkgs -, config -, lib -, hostName -, modulesPath -, ... +{ + pkgs, + config, + lib, + hostName, + modulesPath, + ... }: let username = config.conf.username; diff --git a/modules/conf.nix b/modules/conf.nix index dcaa1e7..7123c9f 100644 --- a/modules/conf.nix +++ b/modules/conf.nix @@ -175,8 +175,8 @@ }; systemStateVersion = lib.mkOption { - default = "unstable"; example = "24.05"; + default = "23.05"; type = lib.types.str; description = '' System state version diff --git a/modules/programs/gnome_services.nix b/modules/programs/gnome_services.nix index cebbad1..3c489cd 100644 --- a/modules/programs/gnome_services.nix +++ b/modules/programs/gnome_services.nix @@ -33,7 +33,7 @@ # needed for GNOME services outside of GNOME Desktop dbus.packages = with pkgs; [ gcr - gnome.gnome-settings-daemon + gnome-settings-daemon ]; gnome.gnome-keyring.enable = true;