nixos-config/home.nix
2024-09-22 01:15:13 -04:00

23 lines
450 B
Nix

{ 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";
};
}