nixos-config/home.nix

24 lines
450 B
Nix
Raw Normal View History

2024-09-22 01:04:11 -04:00
{ lib, pkgs, ... }:
{
home = {
packages = with pkgs; [
eza
fish
emacs
just
fd
fzf
bat
jq
];
# This needs to actually be set to your username
username = "emenel";
homeDirectory = "/home/emenel";
# You do not need to change this if you're reading this in the future.
# Don't ever change this after the first build. Don't ask questions.
stateVersion = "23.11";
};
}