Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
32
module/aspect/desktop/login-manager.nix
Normal file
32
module/aspect/desktop/login-manager.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
den.aspects = {
|
||||
desktop = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
(pkgs.where-is-my-sddm-theme.override {
|
||||
themeConfig.General = {
|
||||
usersFontSize = "12";
|
||||
passwordFontSize = "16";
|
||||
sessionsFontSize = "12";
|
||||
hideCursor = "true";
|
||||
passwordCursorColor="#ffffff";
|
||||
};
|
||||
})
|
||||
];
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
theme = "where_is_my_sddm_theme";
|
||||
package = pkgs.kdePackages.sddm;
|
||||
extraPackages = [
|
||||
pkgs.kdePackages.qt5compat
|
||||
];
|
||||
};
|
||||
environment.variables = {
|
||||
XD_RUNTIME_DIR = "/run/user/$UID";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue