test aurora

This commit is contained in:
2026-03-20 11:28:20 -05:00
parent 1636b715b5
commit 79c8e5061b
12 changed files with 63 additions and 64 deletions

View File

@@ -0,0 +1,21 @@
{ inputs, ... }: {
flake.nixosModules.default = { 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 {
services.aurora-greeter = {
enable = false;
};
};
};
}