nixos/profiles/sway/autostart.nix

17 lines
354 B
Nix
Raw Normal View History

2023-11-07 22:00:00 +01:00
{ config, lib, ... }:
2023-03-19 15:35:02 +01:00
let
cfg = config.my.profiles.sway-autostart;
in
{
options.my.profiles.sway-autostart = with lib; {
enable = mkEnableOption "sway-autostart profile";
};
config = lib.mkIf cfg.enable {
2025-12-27 18:12:32 +01:00
services.displayManager.lemurs = {
enable = true;
settings.environment_switcher.include_tty_shell = true;
};
2023-03-19 15:35:02 +01:00
};
}