From 8fba196f1c8b669a449858be0de33a13e5327ea9 Mon Sep 17 00:00:00 2001 From: Dea Date: Wed, 29 Jul 2026 22:12:19 -0400 Subject: [PATCH] laptop silent sddm config --- hosts/nahemah/default.nix | 71 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/hosts/nahemah/default.nix b/hosts/nahemah/default.nix index 2e29aba..97a6981 100644 --- a/hosts/nahemah/default.nix +++ b/hosts/nahemah/default.nix @@ -1,7 +1,76 @@ -{...}: { +{ + root, + ... +}: { imports = [ ./hardware-configuration.nix ]; networking.hostName = "nahemah"; + + # lock screen theming + programs.silentSDDM = { + backgrounds.dea = /${root}/assets/wallpapers/lantern.png; + profileIcons.dea = /${root}/assets/pfps/happy.jpg; + settings = { + "General" = { + background-fill-mode = "fill"; + }; + "LockScreen" = { + background = "lantern.png"; + blur = 0; + }; + "LockScreen.Clock" = { + position = "center-right"; + align = "center"; + font = "DroidSansM Nerd Font"; + font-size = 160; + }; + "LockScreen.Date" = { + display = false; + }; + "LockScreen.Message" = { + display = true; + position = "bottom-center"; + align = "center"; + text = "Have a maimai day :3"; + font-family = "DroidSansM Nerd Font"; + display-icon = false; + }; + "LoginScreen" = { + background = "lantern.png"; + }; + "LoginScreen.LoginArea" = { + position = "right"; + margin = 96; + }; + "LoginScreen.LoginArea.Avatar" = { + shape = "square"; + active-border-color = "#c4c4f1"; + active-border-size = 4; + }; + "LoginScreen.LoginArea.Username" = { + font-family = "DroidSansM Nerd Font"; + }; + "LoginScreen.LoginArea.PasswordInput" = { + font-family = "DroidSansM Nerd Font"; + width = 216; + }; + "LoginScreen.LoginArea.Spinner" = { + font-family = "DroidSansM Nerd Font"; + }; + "LoginScreen.LoginArea.WarningMessage" = { + font-family = "DroidSansM Nerd Font"; + }; + "LoginScreen.MenuArea.Buttons" = { + font-family = "DroidSansM Nerd Font"; + }; + "LoginScreen.MenuArea.Popups" = { + font-family = "DroidSansM Nerd Font"; + }; + "Tooltips" = { + font-family = "DroidSansM Nerd Font"; + }; + }; + }; }