mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.xserver.windowManager.awesome;
|
|
awesome = cfg.package;
|
|
getLuaPath = lib: dir: "${lib}/${dir}/lua/${awesome.lua.luaversion}";
|
|
makeSearchPath = lib.concatMapStrings (path:
|
|
" --search " + (getLuaPath path "share") +
|
|
" --search " + (getLuaPath path "lib")
|
|
);
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.xserver.windowManager.awesome = {
|
|
|
|
enable = mkEnableOption "Awesome window manager";
|
|
|
|
luaModules = mkOption {
|
|
default = [];
|
|
type = types.listOf types.package;
|
|
description = "List of lua packages available for being used in the Awesome configuration.";
|
|
example = literalExpression "[ pkgs.luaPackages.vicious ]";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "awesome" { };
|
|
|
|
noArgb = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = "Disable client transparency support, which can be greatly detrimental to performance in some setups";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.xserver.windowManager.session = singleton
|
|
{ name = "awesome";
|
|
start =
|
|
''
|
|
${awesome}/bin/awesome ${lib.optionalString cfg.noArgb "--no-argb"} ${makeSearchPath cfg.luaModules} &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
|
|
environment.systemPackages = [ awesome ];
|
|
|
|
};
|
|
}
|