nixos-config/5pkgs/awesomecfg/default.nix

30 lines
694 B
Nix
Raw Normal View History

{ pkgs
, lib
, alsaUtils
, xbacklight
, networkmanagerapplet
, blueman
, clipit
2019-02-05 22:32:28 +01:00
, flameshot
, chapter-marker ? false
, modkey ? "Mod4"
2018-03-13 11:34:28 +01:00
, locker? "${pkgs.xlock}/bin/xlock -mode blank"
, ... }:
2015-10-09 12:35:26 +02:00
{
2020-09-16 22:25:40 +02:00
# replace: @alsaUtils@ @xlockmore@ @xbacklight@ @modkey@ @chapter-marker@
full = lib.makeOverridable pkgs.substituteAll {
name = "awesome_full_config";
2019-02-05 22:32:28 +01: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 11:34:28 +01:00
inherit alsaUtils locker xbacklight modkey;
isExecutable = false;
src = ./kiosk.lua;
};
2015-10-09 12:35:26 +02:00
}