nixpkgs/modules/services/x11/window-managers/awesome.nix
Lluís Batlle i Rossell 825923a051 Adding the 'awesome' window manager to nixos.
I made the system sw path include /etc/xdg - awesome looks for some file
in the XDG_CONFIG_DIRS, which in bashrc is set to point to the profiles/etc/xdg


svn path=/nixos/trunk/; revision=21675
2010-05-08 23:24:00 +00:00

43 lines
619 B
Nix

{ config, pkgs, ... }:
with pkgs.lib;
let
cfg = config.services.xserver.windowManager.awesome;
in
{
###### interface
options = {
services.xserver.windowManager.awesome.enable = mkOption {
default = false;
description = "Enable the Awesome window manager.";
};
};
###### implementation
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton
{ name = "awesome";
start =
''
${pkgs.awesome}/bin/awesome &
waitPID=$!
'';
};
environment.x11Packages = [ pkgs.awesome ];
};
}