21 lines
425 B
Nix
21 lines
425 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.noctalia-greeter = { pkgs, ... }: {
|
|
imports = [
|
|
inputs.noctalia-greeter.nixosModules.default
|
|
];
|
|
|
|
programs.noctalia-greeter = {
|
|
enable = true;
|
|
greeter-args = "";
|
|
settings = {
|
|
cursor = {
|
|
theme = "Bibata-Modern-Classic";
|
|
size = 24;
|
|
path = "${pkgs.bibata-cursors}/share/icons";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|