nixos-config/modules/system/desktop/awesome.nix
2024-07-12 12:23:21 +09:00

11 lines
207 B
Nix

{ config, pkgs, ... }:
{
services.xserver.windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
luadbi-mysql
];
};
}