diff --git a/hosts/bunk/settings.nix b/hosts/bunk/settings.nix index 5712b2d4..a74c5580 100644 --- a/hosts/bunk/settings.nix +++ b/hosts/bunk/settings.nix @@ -36,7 +36,7 @@ theme = { background = { lockscreen = "wallpaper_2"; - desktop = "wallpaper_1"; + primary = "wallpaper_1"; }; }; }; diff --git a/hosts/kima/settings.nix b/hosts/kima/settings.nix index 0bf5bfd1..0debd06e 100644 --- a/hosts/kima/settings.nix +++ b/hosts/kima/settings.nix @@ -36,8 +36,8 @@ theme = { background = { lockscreen = "wallpaper_4"; - desktop = "wallpaper_1"; - vertical = "wallpaper_5"; + primary = "wallpaper_1"; + secondary = "wallpaper_5"; }; }; }; diff --git a/hosts/toothpc/settings.nix b/hosts/toothpc/settings.nix index 4dcb3f43..37bfa915 100644 --- a/hosts/toothpc/settings.nix +++ b/hosts/toothpc/settings.nix @@ -23,7 +23,7 @@ theme = { background = { lockscreen = "wallpaper_2"; - desktop = "wallpaper_1"; + primary = "wallpaper_1"; }; }; }; diff --git a/modules/settings/theme/default.nix b/modules/settings/theme/default.nix index 4e7c2dcf..d817474f 100644 --- a/modules/settings/theme/default.nix +++ b/modules/settings/theme/default.nix @@ -18,14 +18,14 @@ in apply = name: bgs.${name}; example = "wallpaper_1"; }; - desktop = mkOption { + primary = mkOption { type = types.enum bgList; apply = name: bgs.${name}; example = "wallpaper_2"; }; - vertical = mkOption { + secondary = mkOption { type = types.enum bgList; - apply = name: bgs.${name}; + apply = name: if name == null then null else bgs.${name}; example = "wallpaper_3"; }; };