{ pkgs, inputs, ... }: { # Noctalia greeter (display manager login screen). # The module comes from the flake input rather than nixpkgs. imports = [ inputs.noctalia-greeter.nixosModules.default ]; programs.noctalia-greeter = { enable = true; settings = { cursor = { theme = "Bibata-Modern-Ice"; size = 24; path = "${pkgs.bibata-cursors}/share/icons"; }; }; }; }