more dynamic color

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-29 22:17:03 +02:00
parent 1db9cf76f7
commit 5c92ded93d
7 changed files with 83 additions and 78 deletions

View File

@@ -1,25 +1,36 @@
{ config, pkgs, ... }:
{ pkgs, user, ... }:
{
environment.systemPackages = with pkgs; [
sddm
where-is-my-sddm-theme
];
# environment.systemPackages = with pkgs; [
# sddm
# where-is-my-sddm-theme
# ];
services.xserver = {
displayManager = {
defaultSession = "hyprland";
sddm = {
enable = true;
theme = "where_is_my_sddm_theme";
settings = {
theme = {
# background = /home/nx2/Pictures/
passwordFontSize = 12;
passwordInputCursorVisible = true;
};
};
# services.xserver = {
# displayManager = {
# defaultSession = "hyprland";
# sddm = {
# enable = true;
# theme = "where_is_my_sddm_theme";
# settings = {
# theme = {
# # background = /home/nx2/Pictures/
# passwordFontSize = 12;
# passwordInputCursorVisible = true;
# };
# };
# };
# };
# };
services.greetd = {
enable = true;
settings = rec {
hyprland = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland";
user = user;
};
default_session = hyprland;
vt = 2;
};
};
}