23 lines
450 B
Nix
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";
|
|
};
|
|
}
|