Converted gammastep module to home module
This commit is contained in:
parent
0862244fd2
commit
9c9667e5ef
5 changed files with 30 additions and 30 deletions
|
@ -1,23 +1,27 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf;
|
||||
|
||||
cfg = config.aa.suites.desktop;
|
||||
cfg = config.${namespace}.suites.desktop;
|
||||
in {
|
||||
options.aa.suites.desktop = {
|
||||
options.${namespace}.suites.desktop = {
|
||||
enable = mkEnableOption "common desktop configuration";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
aa = {
|
||||
${namespace} = {
|
||||
desktop = {
|
||||
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
|
||||
# Workaround for https://github.com/NixOS/nixpkgs/issues/158025
|
||||
# This comment specifically: https://github.com/NixOS/nixpkgs/issues/158025#issuecomment-1344766809
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue