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

30 lines
694 B
Nix
Raw Normal View History

{ pkgs
, lib
, alsaUtils
, xbacklight
, networkmanagerapplet
, blueman
, clipit
2019-02-05 21:32:28 +00:00
, flameshot
, chapter-marker ? false
, 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
{
2020-09-16 20:25:40 +00:00
# replace: @alsaUtils@ @xlockmore@ @xbacklight@ @modkey@ @chapter-marker@
full = lib.makeOverridable pkgs.substituteAll {
name = "awesome_full_config";
2019-02-05 21:32:28 +00:00
inherit alsaUtils locker xbacklight modkey networkmanagerapplet blueman clipit flameshot ;
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
}