Merge pull request #32578 from michaelpj/imp/plymouth-theme-defaut

plymouth: add breeze-plymouth as default theme

authored by Orivej Desh and committed by GitHub b256afac d74b496d

+7 -12
-10
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 193 193 theme = mkDefault "breeze"; 194 194 }; 195 195 196 - boot.plymouth = { 197 - theme = mkDefault "breeze"; 198 - themePackages = mkDefault [ 199 - (pkgs.breeze-plymouth.override { 200 - nixosBranding = true; 201 - nixosVersion = config.system.nixosRelease; 202 - }) 203 - ]; 204 - }; 205 - 206 196 security.pam.services.kde = { allowNullPassword = true; }; 207 197 208 198 # Doing these one by one seems silly, but we currently lack a better
+7 -2
nixos/modules/system/boot/plymouth.nix
··· 8 8 9 9 cfg = config.boot.plymouth; 10 10 11 + breezePlymouth = pkgs.breeze-plymouth.override { 12 + nixosBranding = true; 13 + nixosVersion = config.system.nixosRelease; 14 + }; 15 + 11 16 themesEnv = pkgs.buildEnv { 12 17 name = "plymouth-themes"; 13 - paths = [ plymouth ] ++ cfg.themePackages; 18 + paths = [ plymouth breezePlymouth ] ++ cfg.themePackages; 14 19 }; 15 20 16 21 configFile = pkgs.writeText "plymouthd.conf" '' ··· 38 43 }; 39 44 40 45 theme = mkOption { 41 - default = "fade-in"; 46 + default = "breeze"; 42 47 type = types.str; 43 48 description = '' 44 49 Splash screen theme.