nix: replace sddm with greetd
enables autologin display manager is ttygreet
This commit is contained in:
parent
6d2fc37b81
commit
33b5e45327
1 changed files with 10 additions and 14 deletions
|
|
@ -1,20 +1,16 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
services.displayManager.sddm = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland.enable = true;
|
settings = {
|
||||||
theme = "where_is_my_sddm_theme_qt5";
|
initial_session = {
|
||||||
};
|
command = "${pkgs.hyprland}/bin/Hyprland";
|
||||||
|
user = "nico";
|
||||||
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";
|
|
||||||
};
|
};
|
||||||
})
|
default_session = {
|
||||||
];
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --asterisks --time --greeting 'nyaaa~~'";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue