this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

19 2024-08-19 14:00:42 (current)

+6 -4
+6 -4
home.nix
··· 18 18 # The home.packages option allows you to install Nix packages into your 19 19 # environment. 20 20 home.packages = [ 21 - # # Adds the 'hello' command to your environment. It prints a friendly 22 - # # "Hello, world!" when run. 23 - pkgs.hello 24 - 25 21 # # It is sometimes useful to fine-tune packages, for example, by applying 26 22 # # overrides. You can do that directly here, just don't forget the 27 23 # # parentheses. Maybe you want to install Nerd Fonts with a limited number of ··· 67 63 68 64 # Let Home Manager install and manage itself. 69 65 programs.home-manager.enable = true; 66 + 67 + programs.zsh = { 68 + enable = true; 69 + enableAutosuggestions = true; 70 + enableCompletion = true; 71 + }; 70 72 }