treewide: format with nixfmt

This commit is contained in:
insects 2024-09-22 10:56:40 +02:00
parent 303e982a8e
commit 26ad72592a
47 changed files with 380 additions and 725 deletions

View file

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
programs.direnv = {
enable = true;
nix-direnv.enable = true;

View file

@ -1,4 +1 @@
{ ... }:
{
programs.lazygit.enable = true;
}
{ ... }: { programs.lazygit.enable = true; }

View file

@ -1,16 +1,12 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
python3 # needed for installing node.js
];
{ pkgs, ... }: {
home.packages = with pkgs;
[
python3 # needed for installing node.js
];
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
tools = {
node = "lts";
};
};
globalConfig = { tools = { node = "lts"; }; };
};
}