feat: simple bar for now.

This commit is contained in:
CronyAkatsuki 2026-03-11 20:49:24 +01:00
parent de0cb7d6e0
commit 14dd8214ac
7 changed files with 303 additions and 0 deletions

35
flake.nix Normal file
View file

@ -0,0 +1,35 @@
{
description = "crony shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
quickshell = {
url = "git+https://git.outfoxxed.me/quickshell/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
...
} @ inputs: let
systems = ["x86_64-linux"];
forEachSystem = nixpkgs.lib.genAttrs systems;
pkgsForEach = nixpkgs.legacyPackages;
in {
packages = forEachSystem (system: {
default = self.packages.${system}.cronyshell;
cronyshell = pkgsForEach.${system}.callPackage ./default.nix {
quickshell = inputs.quickshell.packages.${system}.default;
};
});
devShells = forEachSystem (system: {
default = pkgsForEach.${system}.callPackage ./shell.nix {
quickshell = inputs.quickshell.packages.${system}.default;
};
});
};
}