Converted gammastep module to home module
This commit is contained in:
parent
0862244fd2
commit
9c9667e5ef
|
@ -7,7 +7,7 @@
|
||||||
namespace,
|
namespace,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
${namespace} = {
|
aa = {
|
||||||
apps = {
|
apps = {
|
||||||
bat.enable = true;
|
bat.enable = true;
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
gammastep.enable = true;
|
||||||
playerctld.enable = true;
|
playerctld.enable = true;
|
||||||
swayidle.enable = true;
|
swayidle.enable = true;
|
||||||
swaync.enable = true;
|
swaync.enable = true;
|
||||||
|
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
options,
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
cfg = config.aa.desktop.addons.gammastep;
|
|
||||||
in {
|
|
||||||
options.aa.desktop.addons.gammastep = with types; {
|
|
||||||
enable = mkEnableOption "gammastep";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.geoclue2.enable = true;
|
|
||||||
|
|
||||||
aa.home.extraOptions = {
|
|
||||||
services.gammastep = {
|
|
||||||
enable = true;
|
|
||||||
provider = "geoclue2";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -37,7 +37,6 @@ in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa.desktop.addons = {
|
aa.desktop.addons = {
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
gammastep.enable = true;
|
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
# light
|
# light
|
||||||
|
|
|
@ -1,23 +1,27 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib) mkEnableOption mkIf;
|
inherit (lib) mkEnableOption mkIf;
|
||||||
|
|
||||||
cfg = config.aa.suites.desktop;
|
cfg = config.${namespace}.suites.desktop;
|
||||||
in {
|
in {
|
||||||
options.aa.suites.desktop = {
|
options.${namespace}.suites.desktop = {
|
||||||
enable = mkEnableOption "common desktop configuration";
|
enable = mkEnableOption "common desktop configuration";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa = {
|
${namespace} = {
|
||||||
desktop = {
|
desktop = {
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Required to use gammastep home module without providing lat/long
|
||||||
|
services.geoclue2.enable = true;
|
||||||
|
|
||||||
# The following fixes an issue with using swaylcock as a home module
|
# The following fixes an issue with using swaylcock as a home module
|
||||||
# Workaround for https://github.com/NixOS/nixpkgs/issues/158025
|
# Workaround for https://github.com/NixOS/nixpkgs/issues/158025
|
||||||
# This comment specifically: https://github.com/NixOS/nixpkgs/issues/158025#issuecomment-1344766809
|
# This comment specifically: https://github.com/NixOS/nixpkgs/issues/158025#issuecomment-1344766809
|
||||||
|
|
Loading…
Reference in a new issue