sddm: wrap to include themes
This commit is contained in:
parent
34f2addf11
commit
78a6d62b48
@ -9,6 +9,8 @@ let
|
|||||||
cfg = dmcfg.sddm;
|
cfg = dmcfg.sddm;
|
||||||
xEnv = config.systemd.services."display-manager".environment;
|
xEnv = config.systemd.services."display-manager".environment;
|
||||||
|
|
||||||
|
sddm = pkgs.sddm.override { inherit (cfg) themes; };
|
||||||
|
|
||||||
xserverWrapper = pkgs.writeScript "xserver-wrapper" ''
|
xserverWrapper = pkgs.writeScript "xserver-wrapper" ''
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
${concatMapStrings (n: "export ${n}=\"${getAttr n xEnv}\"\n") (attrNames xEnv)}
|
${concatMapStrings (n: "export ${n}=\"${getAttr n xEnv}\"\n") (attrNames xEnv)}
|
||||||
@ -22,6 +24,8 @@ let
|
|||||||
|
|
||||||
[Theme]
|
[Theme]
|
||||||
Current=${cfg.theme}
|
Current=${cfg.theme}
|
||||||
|
ThemeDir=${sddm}/share/sddm/themes
|
||||||
|
FacesDir=${sddm}/share/sddm/faces
|
||||||
|
|
||||||
[Users]
|
[Users]
|
||||||
MaximumUid=${toString config.ids.uids.nixbld}
|
MaximumUid=${toString config.ids.uids.nixbld}
|
||||||
@ -86,6 +90,14 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
themes = mkOption {
|
||||||
|
type = types.listOf types.package;
|
||||||
|
default = [];
|
||||||
|
description = ''
|
||||||
|
Extra packages providing themes.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
autoLogin = mkOption {
|
autoLogin = mkOption {
|
||||||
default = {};
|
default = {};
|
||||||
description = ''
|
description = ''
|
||||||
@ -146,8 +158,7 @@ in
|
|||||||
services.xserver.displayManager.job = {
|
services.xserver.displayManager.job = {
|
||||||
logsXsession = true;
|
logsXsession = true;
|
||||||
|
|
||||||
#execCmd = "${pkgs.sddm}/bin/sddm";
|
execCmd = "exec ${sddm}/bin/sddm";
|
||||||
execCmd = "exec ${pkgs.sddm}/bin/sddm";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
security.pam.services = {
|
security.pam.services = {
|
||||||
|
@ -1,54 +1,80 @@
|
|||||||
{ stdenv, fetchpatch, makeQtWrapper, fetchFromGitHub, cmake, pkgconfig, libxcb, libpthreadstubs
|
{ stdenv, makeQtWrapper, fetchFromGitHub
|
||||||
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd }:
|
, cmake, pkgconfig, libxcb, libpthreadstubs, lndir
|
||||||
|
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd
|
||||||
|
, themes
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.13.0";
|
version = "0.13.0";
|
||||||
|
|
||||||
|
unwrapped = stdenv.mkDerivation rec {
|
||||||
|
name = "sddm-unwrapped-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sddm";
|
||||||
|
repo = "sddm";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0c3q8lpb123m9k5x3i71mm8lmyzhknw77zxh89yfl8qmn6zd61i1";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./0001-ignore-config-mtime.patch
|
||||||
|
./0002-fix-ConfigReader-QStringList-corruption.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig qttools ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCONFIG_FILE=/etc/sddm.conf"
|
||||||
|
# Set UID_MIN and UID_MAX so that the build script won't try
|
||||||
|
# to read them from /etc/login.defs (fails in chroot).
|
||||||
|
# The values come from NixOS; they may not be appropriate
|
||||||
|
# for running SDDM outside NixOS, but that configuration is
|
||||||
|
# not supported anyway.
|
||||||
|
"-DUID_MIN=1000"
|
||||||
|
"-DUID_MAX=29999"
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/lib/qt5/qml -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "QML based X11 display manager";
|
||||||
|
homepage = https://github.com/sddm/sddm;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
name = "sddm-${version}";
|
name = "sddm-${version}";
|
||||||
|
phases = "installPhase";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
nativeBuildInputs = [ lndir makeQtWrapper ];
|
||||||
owner = "sddm";
|
buildInputs = [ unwrapped ] ++ themes;
|
||||||
repo = "sddm";
|
inherit themes;
|
||||||
rev = "v${version}";
|
inherit unwrapped;
|
||||||
sha256 = "0c3q8lpb123m9k5x3i71mm8lmyzhknw77zxh89yfl8qmn6zd61i1";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
installPhase = ''
|
||||||
./0001-ignore-config-mtime.patch
|
makeQtWrapper "$unwrapped/bin/sddm" "$out/bin/sddm"
|
||||||
./0002-fix-ConfigReader-QStringList-corruption.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake makeQtWrapper pkgconfig qttools ];
|
mkdir -p "$out/share/sddm"
|
||||||
|
for pkg in $unwrapped $themes; do
|
||||||
buildInputs = [ libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd ];
|
local sddmDir="$pkg/share/sddm"
|
||||||
|
if [[ -d "$sddmDir" ]]; then
|
||||||
cmakeFlags = [
|
lndir -silent "$sddmDir" "$out/share/sddm"
|
||||||
"-DCONFIG_FILE=/etc/sddm.conf"
|
fi
|
||||||
# Set UID_MIN and UID_MAX so that the build script won't try
|
done
|
||||||
# to read them from /etc/login.defs (fails in chroot).
|
|
||||||
# The values come from NixOS; they may not be appropriate
|
|
||||||
# for running SDDM outside NixOS, but that configuration is
|
|
||||||
# not supported anyway.
|
|
||||||
"-DUID_MIN=1000"
|
|
||||||
"-DUID_MAX=29999"
|
|
||||||
];
|
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/lib/qt5/qml -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
inherit (unwrapped) meta;
|
||||||
wrapQtProgram $out/bin/sddm
|
|
||||||
wrapQtProgram $out/bin/sddm-greeter
|
|
||||||
'';
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "QML based X11 display manager";
|
|
||||||
homepage = https://github.com/sddm/sddm;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ abbradar ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -13115,7 +13115,9 @@ let
|
|||||||
|
|
||||||
printrun = callPackage ../applications/misc/printrun { };
|
printrun = callPackage ../applications/misc/printrun { };
|
||||||
|
|
||||||
sddm = qt5Libs.callPackage ../applications/display-managers/sddm { };
|
sddm = qt5Libs.callPackage ../applications/display-managers/sddm {
|
||||||
|
themes = []; # extra themes, etc.
|
||||||
|
};
|
||||||
|
|
||||||
slim = callPackage ../applications/display-managers/slim {
|
slim = callPackage ../applications/display-managers/slim {
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user