First commit

This commit is contained in:
2026-03-06 08:06:15 -06:00
commit 93c1b00adc
42 changed files with 2839 additions and 0 deletions

28
config/hybar/default.nix Normal file
View File

@@ -0,0 +1,28 @@
{ ... }: {
perSystem = { self', pkgs, system, ... }: {
packages = {
hybar = pkgs.writeShellScriptBin "hybar" ''
${pkgs.quickshell}/bin/quickshell --path ${self'.packages.hybar-dots}/share "''$@"
'';
hybar-dots = pkgs.stdenv.mkDerivation {
name = "hybar-dots";
src = ./.;
buildInputs = [];
buildPhase = ''
'';
installPhase = ''
mkdir -p $out/share
cp -r $src/* $out/share
'';
};
};
};
}