dotfiles/modules/nixos/suites/desktop/default.nix

28 lines
764 B
Nix
Raw Normal View History

2023-03-12 03:59:11 +00:00
{
config,
lib,
namespace,
2023-03-12 03:59:11 +00:00
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.${namespace}.suites.desktop;
2023-03-12 03:59:11 +00:00
in {
options.${namespace}.suites.desktop = {
2023-03-12 03:59:11 +00:00
enable = mkEnableOption "common desktop configuration";
};
config = mkIf cfg.enable {
# Required to use gammastep home module without providing lat/long
services.geoclue2.enable = true;
2024-08-03 03:49:25 +00:00
# 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
security.pam.services.swaylock = {};
2024-08-03 17:02:02 +00:00
# Required for GUIs (like sway) to work correctly.
hardware.graphics.enable = true;
2023-03-12 03:59:11 +00:00
};
}