Manage background with gnome settings

This commit is contained in:
RingOfStorms (Josh) 2024-07-12 11:54:01 -05:00
parent 71deaf21a9
commit 2de7a0a1ad
7 changed files with 65 additions and 8 deletions

View file

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = false;
};
displayManager.defaultSession = "plasmax11";
desktopManager.plasma6 = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
xclip
];
}