mirror of
https://github.com/ryan4yin/nixos-and-flakes-book.git
synced 2025-06-22 04:51:29 +02:00
Merge pull request #17 from noamsto/fix-home-nix-content-example
fix: home.nix content example
This commit is contained in:
commit
7f28083a7f
@ -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.
|
# Packages that should be installed to the user profile.
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
# here is some command line tools I use frequently
|
# here is some command line tools I use frequently
|
||||||
# feel free to add your own or remove some of them
|
# 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
|
# alacritty - a cross-platform, GPU-accelerated terminal emulator
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
settings = {
|
||||||
env.TERM = "xterm-256color";
|
env.TERM = "xterm-256color";
|
||||||
font = {
|
font = {
|
||||||
size = 12;
|
size = 12;
|
||||||
@ -130,6 +131,7 @@ According to the official [Home Manager Manual](https://nix-community.github.io/
|
|||||||
};
|
};
|
||||||
scrolling.multiplier = 5;
|
scrolling.multiplier = 5;
|
||||||
selection.save_to_clipboard = true;
|
selection.save_to_clipboard = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user