forked from nico/dots
20 lines
478 B
Nix
20 lines
478 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
theme = "where_is_my_sddm_theme_qt5";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(pkgs.where-is-my-sddm-theme.override {
|
|
variants = [ "qt5" ];
|
|
themeConfig.General = {
|
|
background = pkgs.nixos-artwork.wallpapers.nineish-dark-gray.gnomeFilePath;
|
|
backgroundMode = "fill";
|
|
cursorColor = "#ffffff";
|
|
};
|
|
})
|
|
];
|
|
}
|