feat: isolate awesomeWM config

This commit is contained in:
tux
2025-02-27 16:12:22 +05:30
parent e1553de0ad
commit 5f70161a19
376 changed files with 18 additions and 7933 deletions

22
default.nix Normal file
View File

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