stockholm/makefu/5pkgs/awesomecfg/default.nix

28 lines
629 B
Nix
Raw Normal View History

{ pkgs
, lib
, alsaUtils
, xbacklight
, networkmanagerapplet
, blueman
, clipit
, modkey ? "Mod4"
2018-03-13 10:34:28 +00:00
, locker? "${pkgs.xlock}/bin/xlock -mode blank"
, ... }:
2015-10-09 10:35:26 +00:00
{
# replace: @alsaUtils@ @xlockmore@ @xbacklight@ @modkey@
full = lib.makeOverridable pkgs.substituteAll {
name = "awesome_full_config";
inherit alsaUtils locker xbacklight modkey networkmanagerapplet blueman clipit;
isExecutable = false;
src = ./full.cfg;
};
kiosk = lib.makeOverridable pkgs.substituteAll {
name = "awesome_kiosk_config";
2018-03-13 10:34:28 +00:00
inherit alsaUtils locker xbacklight modkey;
isExecutable = false;
src = ./kiosk.lua;
};
2015-10-09 10:35:26 +00:00
}