21 lines
374 B
Nix
21 lines
374 B
Nix
{ config, pkgs, lib, ... }: let
|
|
|
|
in {
|
|
imports = [
|
|
./dwl.nix
|
|
];
|
|
|
|
services.displayManager = {
|
|
enable = true;
|
|
execCmd = "${pkgs.lemurs}/bin/lemurs";
|
|
};
|
|
|
|
environment.etc."lemurs/wayland/dwl" = {
|
|
source = pkgs.writeScript "dwl-startup" ''
|
|
#!${pkgs.bash}/bin/bash
|
|
${pkgs.yambar}/bin/yambar &
|
|
exec ${pkgs.dwl}/bin/dwl
|
|
'';
|
|
};
|
|
}
|