From a9c0b1072006cab12c98d05cf06f7305825d9ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Sun, 24 Nov 2024 13:07:15 +0100 Subject: [PATCH] use correct background in sddm --- modules/nix/autoupdater.nix | 4 ++-- programs/stylix/default.nix | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/modules/nix/autoupdater.nix b/modules/nix/autoupdater.nix index c2e566ea..03a505d0 100644 --- a/modules/nix/autoupdater.nix +++ b/modules/nix/autoupdater.nix @@ -20,12 +20,12 @@ with lib; project = mkOption { type = types.str; description = "Project name to use"; - default = "nixos-config"; + default = "flakes"; }; jobset = mkOption { type = types.str; description = "Jobset name to use"; - default = "pr618"; + default = "nixos-config-rewrite"; }; job = mkOption { type = types.str; diff --git a/programs/stylix/default.nix b/programs/stylix/default.nix index c82c9d99..02526f0b 100644 --- a/programs/stylix/default.nix +++ b/programs/stylix/default.nix @@ -216,4 +216,11 @@ in }; } ]; + environment.systemPackages = [ + (pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" '' + [General] + background=${bgPng} + type=image + '') + ]; }