17 lines
296 B
Nix
17 lines
296 B
Nix
{ inputs, ... }: {
|
|
|
|
flake.nixosModules.aurora-greeter = { config, lib, pkgs, ... }: {
|
|
|
|
imports = [
|
|
inputs.aurora.nixosModules.default
|
|
];
|
|
|
|
config = {
|
|
|
|
services.aurora-greeter = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|