2018-07-07 11:58:10 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.xsession.windowManager.awesome;
|
|
|
|
awesome = cfg.package;
|
2022-11-01 19:43:20 +01:00
|
|
|
getLuaPath = lib: dir: "${lib}/${dir}/lua/${awesome.lua.luaversion}";
|
2018-07-07 11:58:10 +02:00
|
|
|
makeSearchPath = lib.concatMapStrings (path:
|
|
|
|
" --search ${getLuaPath path "share"}"
|
2020-02-02 00:39:17 +01:00
|
|
|
+ " --search ${getLuaPath path "lib"}");
|
2018-07-07 11:58:10 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-07-07 11:58:10 +02:00
|
|
|
options = {
|
|
|
|
xsession.windowManager.awesome = {
|
2022-01-25 00:10:25 +01:00
|
|
|
enable = mkEnableOption "Awesome window manager";
|
2018-07-07 11:58:10 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.awesome;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.awesome";
|
2018-07-07 11:58:10 +02:00
|
|
|
description = "Package to use for running the Awesome WM.";
|
|
|
|
};
|
|
|
|
|
|
|
|
luaModules = mkOption {
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
type = types.listOf types.package;
|
|
|
|
description = ''
|
|
|
|
List of lua packages available for being
|
|
|
|
used in the Awesome configuration.
|
|
|
|
'';
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "[ pkgs.luaPackages.vicious ]";
|
2018-07-07 11:58:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
noArgb = mkOption {
|
2020-02-02 00:39:17 +01:00
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Disable client transparency support, which can be greatly
|
|
|
|
detrimental to performance in some setups
|
|
|
|
'';
|
2018-07-07 11:58:10 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "xsession.windowManager.awesome" pkgs
|
|
|
|
platforms.linux)
|
|
|
|
];
|
|
|
|
|
2018-07-07 11:58:10 +02:00
|
|
|
home.packages = [ awesome ];
|
2021-07-07 23:24:27 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
xsession.windowManager.command = "${awesome}/bin/awesome "
|
|
|
|
+ optionalString cfg.noArgb "--no-argb " + makeSearchPath cfg.luaModules;
|
2018-07-07 11:58:10 +02:00
|
|
|
};
|
|
|
|
}
|