chore: run alejandra

This commit is contained in:
Primrose 2025-06-20 21:41:16 +02:00
parent c509d80b58
commit 79ee2b4908
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
9 changed files with 169 additions and 147 deletions

View file

@ -1,11 +1,17 @@
# This module integrates tmux with fish
{pkgs, lib, config, ...}: {
{
pkgs,
lib,
config,
...
}: {
assertions = [
{ assertion = config.programs.fish.enable;
{
assertion = config.programs.fish.enable;
message = "Should have fish enabled";
}
{ assertion = config.programs.tmux.enable;
{
assertion = config.programs.tmux.enable;
message = "Should have tmux enabled";
}
];
@ -26,5 +32,4 @@
home.packages = with pkgs; [
tmux-sessionizer
];
}