Converted gammastep module to home module
This commit is contained in:
parent
0862244fd2
commit
9c9667e5ef
5 changed files with 30 additions and 30 deletions
21
modules/home/services/gammastep/default.nix
Normal file
21
modules/home/services/gammastep/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
|
||||
cfg = config.${namespace}.services.gammastep;
|
||||
in {
|
||||
options.${namespace}.services.gammastep = {
|
||||
enable = mkEnableOption "gammastep";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.gammastep = {
|
||||
enable = true;
|
||||
provider = "geoclue2";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue