From 42c01a91f467f4b124a4a5f22a0f63062b4cae75 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 5 Feb 2024 10:04:39 -0600 Subject: [PATCH] Format home.nix --- home.nix | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/home.nix b/home.nix index c39b4fe..4002ae5 100644 --- a/home.nix +++ b/home.nix @@ -1,36 +1,36 @@ { config, pkgs, lib, ... }: let inherit (lib) hm; in -{ - imports = [ - ./vim.nix - ]; - programs.git = { - enable = true; - userName = "Leonora Tindall"; - userEmail = "nora@nora.codes"; - delta.enable = true; - extraConfig = { - init.defaultBranch = "main"; + { + imports = [ + ./vim.nix + ]; + programs.git = { + enable = true; + userName = "Leonora Tindall"; + userEmail = "nora@nora.codes"; + delta.enable = true; + extraConfig = { + init.defaultBranch = "main"; + }; }; - }; - programs.zsh = { - enable = true; - enableAutosuggestions = true; - enableCompletion = true; - enableVteIntegration = true; - }; + programs.zsh = { + enable = true; + enableAutosuggestions = true; + enableCompletion = true; + enableVteIntegration = true; + }; - home.packages = with pkgs; [ - htop - wget - ripgrep - bat - fd - neofetch - dfc - ]; + home.packages = with pkgs; [ + htop + wget + ripgrep + bat + fd + neofetch + dfc + ]; # Home Manager is pretty good at managing dotfiles. The primary way to manage # plain files is through 'home.file'.