Files
nix-dotfiles-v2/modules/displaymanager.nix
2025-10-22 12:36:56 +02:00

36 lines
596 B
Nix

{
config,
pkgs,
lib,
...
}:
{
imports = [ ];
environment.systemPackages = [(
pkgs.catppuccin-sddm.override {
flavor = "mocha";
font = "Noto Sans";
fontSize = "24";
background = "${../home/Wallpapers/1346679.jpg}";
loginBackground = true;
}
)];
services.displayManager = {
enable = true;
sessionPackages = with pkgs; [ niri ];
defaultSession = "niri";
sddm = {
enable = true;
autoNumlock = true;
enableHidpi = true;
theme = "catppuccin-mocha";
package = pkgs.kdePackages.sddm;
};
};
}