nixos-config/home-mandlm.nix

33 lines
489 B
Nix
Raw Normal View History

2022-06-18 17:48:25 +00:00
{ config, lib, pkgs, user, ...}:
{
home = {
username = "${user}";
homeDirectory = "/home/${user}";
2022-06-18 18:16:46 +00:00
packages = with pkgs; [
bat
htop
tmux
];
2022-06-18 17:48:25 +00:00
stateVersion = "22.05";
};
2022-06-18 18:16:46 +00:00
programs = {
zsh = {
enable = true;
enableSyntaxHighlighting = true;
history.size = 10000;
oh-my-zsh = {
enable = true;
plugins = [ "git" "tmux" "vi-mode" ];
theme = "intheloop";
};
};
home-manager.enable = true;
};
2022-06-18 17:48:25 +00:00
}