Remove i3 configuration

Remove my i3 configuration as I've been using dwm as my daily driver for
a few weeks.
This commit is contained in:
Oliver Davies 2025-02-12 23:09:47 +00:00
parent 8facff13af
commit bf22f31b5a
5 changed files with 0 additions and 166 deletions

View file

@ -8,7 +8,6 @@ in
{
build-glove80 = callPackage ./build-glove80.nix { };
notes = callPackage ./notes { };
i3-battery-popup = callPackage ./i3-battery-popup.nix { };
tmux-sessionizer = callPackage ./tmux-sessionizer { };
upload-to-files = callPackage ./upload-to-files.nix { };

View file

@ -1,23 +0,0 @@
{ pkgs, ... }:
with pkgs;
stdenv.mkDerivation rec {
pname = "i3-battery-popop";
version = "1.1.1";
src = fetchFromGitHub {
owner = "rjekker";
repo = "i3-battery-popup";
rev = "v${version}";
sha256 = "s6jZCkB0Z8dtnBG2p1NJIUY1fV4urEp4w6wFzxFNlqg=";
};
buildInputs = [ bash ];
installPhase = ''
mkdir -p $out/bin
cp $src/i3-battery-popup $out/bin/i3-battery-popup
chmod +x $out/bin/i3-battery-popup
'';
}