This commit is contained in:
2026-03-31 20:07:15 -05:00
parent 297b993992
commit 59a6dc79f0
15 changed files with 229 additions and 187 deletions

View File

@@ -1,17 +1,12 @@
{ inputs, ... }: {
flake.nixosModules.default = { config, lib, pkgs, ... }: {
flake.nixosModules.aurora-greeter = { config, lib, pkgs, ... }: {
imports = [
inputs.aurora.nixosModules.default
];
options.sysconfig.services.aurora-greeter.enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.services.aurora-greeter.enable {
config = {
services.aurora-greeter = {
enable = true;