Defcon configuration
This commit is contained in:
parent
2de99da8e7
commit
572a496704
9 changed files with 75 additions and 17 deletions
9
custom/cocktail-bar-cli/default.nix
Normal file
9
custom/cocktail-bar-cli/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ pkgs, stdenv, autoPatchelfHook, ... }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cocktail-bar-cli";
|
||||
version = "1.0";
|
||||
src = /home/bertof/defcon/cli/cocktail-bar-cli;
|
||||
dontUnpack = true;
|
||||
nativeBuildInputs = [ autoPatchelfHook ];
|
||||
installPhase = "install -m755 -D ${src} $out/bin/cocktail-bar-cli";
|
||||
}
|
||||
|
|
@ -7,6 +7,7 @@ let
|
|||
self = {
|
||||
lockscreen = callPackage ./lockscreen {};
|
||||
update-background = callPackage ./update-background {};
|
||||
cocktail-bar-cli = callPackage ./cocktail-bar-cli {};
|
||||
# joystickwake = callPackage ./joystickwake {};
|
||||
};
|
||||
in
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue