This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/programs.nix

39 lines
693 B
Nix
Raw Normal View History

{pkgs, ...}: {
home-manager.enable = true;
vim = {
enable = true;
defaultEditor = true;
};
zsh = {
enable = true;
enableSyntaxHighlighting = true;
oh-my-zsh = {
enable = true;
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "emoji" "pip" "npm" "yarn" "vscode" ];
theme = "agnoster";
};
};
waybar = {
enable = true;
systemd.enable = true;
settings = {
};
style = ''
'';
};
kitty = {
enable = true;
font = pkgs.
shellIntegration = {
enableZshIntegration = true;
};
};
}