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

27 lines
603 B
Nix
Raw Normal View History

2023-03-12 03:59:11 +00:00
{
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkIf;
2023-03-12 03:59:11 +00:00
cfg = config.aa.suites.desktop;
in {
options.aa.suites.desktop = {
2023-03-12 03:59:11 +00:00
enable = mkEnableOption "common desktop configuration";
};
config = mkIf cfg.enable {
aa = {
desktop = {
sway.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 = {};
2023-03-12 03:59:11 +00:00
};
}