620bd374de
- Remove all sample/mock data (artists, albums, tracks, queue, history, calendar) - Delete input module (vim.rs, leader.rs) and related UI (which_key, cmdline) - Add mouse support: click tabs, click list items, scroll wheel navigation - Show real disk space via nix::statvfs instead of hardcoded value - Simplify topbar/statusbar by removing mode display and key hints - Hide album/track sections when no artist is selected
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
git-hooks.url = "github:cachix/git-hooks.nix";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
flake-parts,
|
|
git-hooks,
|
|
...
|
|
}@inputs:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
systems = [
|
|
"x86_64-linux"
|
|
];
|
|
|
|
perSystem =
|
|
{
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
config.allowUnfree = true;
|
|
};
|
|
|
|
pre-commit-check = git-hooks.lib.${system}.run {
|
|
src = ./.;
|
|
hooks = {
|
|
nixfmt.enable = true;
|
|
rustfmt.enable = true;
|
|
clippy.enable = true;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
formatter = pkgs.nixfmt-tree;
|
|
|
|
checks = {
|
|
inherit pre-commit-check;
|
|
};
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
inherit (pre-commit-check) shellHook;
|
|
|
|
buildInputs = with pkgs; [
|
|
pre-commit
|
|
gitleaks
|
|
|
|
just
|
|
nixd
|
|
|
|
rustc
|
|
cargo
|
|
rust-analyzer
|
|
clippy
|
|
rustfmt
|
|
|
|
opencode
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|