universedesktop: Back to Tiling™️

This commit is contained in:
2024-05-05 09:33:47 -04:00
parent f6629ce275
commit 29b0281c72
6 changed files with 58 additions and 29 deletions

View File

@@ -0,0 +1,19 @@
{ 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
exec ${pkgs.dwl}/bin/dwl
'';
};
}