blob: c65f8068e69a241b6de474b17e35e3e518a54c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ 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";
};
};
};
}
|