nichts/hosts/vali/mars/awesome.nix
2024-04-12 16:20:03 +02:00

20 lines
447 B
Nix

{ pkgs, lib, config, ... }:
with lib; let
cfg = config.myOptions.programs.awesome;
in {
options.myOptions.programs.awesome.enable = mkEnableOption "awesome";
config = mkIf cfg.enable {
services.xserver = {
enable = true;
xkb.layout = "de";
windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
luadbi-mysql
];
};
};
};
;