🧰 Styled SDDM

- Catppuccin theme for SDDM
- Moved SDDM config to sddm.nix
- Removed unused toml file
This commit is contained in:
2024-12-31 18:22:30 +01:00
parent 51b30405c5
commit cbcc4d8df6
3 changed files with 22 additions and 33 deletions

21
sddm.nix Normal file
View File

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(catppuccin-sddm.override {
flavor = "mocha";
font = "Noto Sans";
fontSize = "9";
background = "${./catppuccin.png}";
loginBackground = true;
})
];
services.displayManager.sddm = {
enable = true;
theme = "catppuccin-mocha";
autoNumlock = true; # Enable numlock at login # TODO doesn't work
wayland.enable = true;
package = pkgs.kdePackages.sddm;
};
}