add alejandra formatter

This commit is contained in:
Fabian Montero 2024-08-24 01:52:56 -06:00
parent 9b3cc59d74
commit 806b00f634
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
17 changed files with 173 additions and 132 deletions

View file

@ -1,6 +1,9 @@
{ lib, pkgs, ... }:
with lib;
{
lib,
pkgs,
...
}:
with lib; {
programs = {
zsh = {
enable = true;
@ -13,15 +16,14 @@ with lib;
};
neovim.enable = true;
};
home.packages = with pkgs;
[
file
htop
killall
man-pages
man-pages-posix
tree
zip
unzip
];
home.packages = with pkgs; [
file
htop
killall
man-pages
man-pages-posix
tree
zip
unzip
];
}

View file

@ -1,7 +1,11 @@
{ config, pkgs, lib, flakes, ... }:
with lib;
{
config,
pkgs,
lib,
flakes,
...
}:
with lib; {
imports = [
./cli.nix
];