Files
nix-dotfiles-v2/modules/displaymanager.nix
Your Name 61896c8791 fix: remove string interpolation from catppuccin-sddm background path
Co-authored-by: aider (openrouter/x-ai/grok-4.1-fast:free) <aider@aider.chat>
2025-12-03 11:00:40 +01:00

36 lines
590 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;
};
};
}