mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-08 10:46:34 +05:30
add awesome-wm config
This commit is contained in:
22
pkgs/awesome/default.nix
Normal file
22
pkgs/awesome/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user