nixos: profiles: x: remove wallpaper

I don't actually care much for the wallpaper, I never look at it.
This commit is contained in:
Bruno BELANYI 2026-01-02 16:02:19 +00:00
parent 8e0ea3593c
commit c2f07a6529

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.my.profiles.x;
in
@ -10,12 +10,6 @@ in
config = lib.mkIf cfg.enable {
# Enable the X11 windowing system.
services.xserver.enable = true;
# Nice wallpaper
services.xserver.displayManager.lightdm.background =
let
wallpapers = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers";
in
"${wallpapers}/summer_1am/contents/images/2560x1600.jpg";
# X configuration
my.home.x.enable = true;