24 lines
334 B
Nix
24 lines
334 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
eza
|
|
fish
|
|
emacs
|
|
just
|
|
fd
|
|
fzf
|
|
bat
|
|
jq
|
|
starship
|
|
];
|
|
|
|
username = "emenel";
|
|
homeDirectory = "/home/emenel";
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
programs.fish.enable = true;
|
|
}
|