Created
January 24, 2020 18:02
-
-
Save monomadic/098a8bdcf837e5f5d7b94002635266a4 to your computer and use it in GitHub Desktop.
Nix Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, ... }: | |
{ | |
programs.home-manager.enable = true; | |
home.packages = [ | |
pkgs.htop # performance monitor | |
pkgs.ranger # file manager | |
pkgs.broot # awesome file manager, sorter, finder | |
pkgs.fzf # fuzzy finder | |
]; | |
# home-manager version compatibility | |
home.stateVersion = "19.09"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment