From c2f07a65292c34ea38ed99d43ce1a3afe5665d20 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 2 Jan 2026 16:02:19 +0000 Subject: [PATCH] nixos: profiles: x: remove wallpaper I don't actually care much for the wallpaper, I never look at it. --- modules/nixos/profiles/x/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/modules/nixos/profiles/x/default.nix b/modules/nixos/profiles/x/default.nix index 874f36f..2f6b8d5 100644 --- a/modules/nixos/profiles/x/default.nix +++ b/modules/nixos/profiles/x/default.nix @@ -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;