add awesome-wm config

This commit is contained in:
2024-08-06 00:49:41 +05:30
parent b4da4c5f92
commit 2f852eed2f
175 changed files with 1100 additions and 1 deletions

22
pkgs/awesome/default.nix Normal file
View File

@ -0,0 +1,22 @@
{
stdenv,
lib,
}: let
awesome = ./awesome;
in
stdenv.mkDerivation {
pname = "tux-awesome-wm-config";
version = "0.1.0";
buildCommand = ''
mkdir -p $out
cp -r ${awesome}/* "$out/"
'';
meta = with lib; {
description = "tux's awesome-wm config";
homepage = "https://tux.rs";
platforms = platforms.all;
license = licenses.gpl3;
};
}