From c4f292d8cf9cf4df8091ceb67559e7c063844753 Mon Sep 17 00:00:00 2001 From: Noam Stolero Date: Fri, 7 Jul 2023 23:11:21 +0300 Subject: [PATCH] fix: home.nix conetent example Signed-off-by: Noam Stolero --- docs/nixos-with-flakes/start-using-home-manager.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/nixos-with-flakes/start-using-home-manager.md b/docs/nixos-with-flakes/start-using-home-manager.md index 2580d2c..7ee3994 100644 --- a/docs/nixos-with-flakes/start-using-home-manager.md +++ b/docs/nixos-with-flakes/start-using-home-manager.md @@ -41,7 +41,7 @@ According to the official [Home Manager Manual](https://nix-community.github.io/ }; # Packages that should be installed to the user profile. - home.packages = [ + home.packages = with pkgs; [ # here is some command line tools I use frequently # feel free to add your own or remove some of them @@ -123,6 +123,7 @@ According to the official [Home Manager Manual](https://nix-community.github.io/ # alacritty - a cross-platform, GPU-accelerated terminal emulator programs.alacritty = { enable = true; + settings = { env.TERM = "xterm-256color"; font = { size = 12; @@ -130,6 +131,7 @@ According to the official [Home Manager Manual](https://nix-community.github.io/ }; scrolling.multiplier = 5; selection.save_to_clipboard = true; + }; }; programs.bash = {