mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
feat: isolate awesomeWM config
This commit is contained in:
22
default.nix
Normal file
22
default.nix
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user