mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-10-30 09:22:11 +01:00
20 lines
381 B
Nix
20 lines
381 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
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 {
|
||
|
|
|
||
|
|
# start sway if login happens
|
||
|
|
environment.interactiveShellInit = ''
|
||
|
|
if test `tty` = /dev/tty1; then
|
||
|
|
exec sway
|
||
|
|
fi
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|