Remove geoclue and gammastep modules

This commit is contained in:
SebastianStork 2025-09-24 14:57:51 +02:00
parent 9ea6397786
commit 517310cf86
5 changed files with 0 additions and 43 deletions

View file

@ -1,15 +0,0 @@
{ config, lib, ... }:
{
options.custom.services.geoclue.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.services.geoclue.enable {
services.geoclue2 = {
enable = true;
appConfig.gammastep = {
isAllowed = true;
isSystem = false;
};
};
};
}