mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
2e795f3efd
It was not working since I forgot to inherit imports from commonOptions.
24 lines
636 B
Nix
24 lines
636 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
commonOptions = import ./lib/options.nix {
|
|
inherit config lib pkgs;
|
|
|
|
moduleName = "redshift";
|
|
programName = "Redshift";
|
|
mainSection = "redshift";
|
|
defaultPackage = pkgs.redshift;
|
|
examplePackage = "pkgs.redshift";
|
|
mainExecutable = "redshift";
|
|
appletExecutable = "redshift-gtk";
|
|
xdgConfigFilePath = "redshift/redshift.conf";
|
|
serviceDocumentation = "http://jonls.dk/redshift/";
|
|
};
|
|
|
|
in {
|
|
inherit (commonOptions) imports meta;
|
|
options.services.redshift = commonOptions.options;
|
|
config = mkIf config.services.redshift.enable commonOptions.config;
|
|
}
|