rework home manager layout

This commit is contained in:
Kopatz
2023-12-11 21:17:56 +01:00
parent 5bcba3d31d
commit b0a9573944
8 changed files with 75 additions and 75 deletions

19
home-manager/zsh.nix Normal file
View File

@@ -0,0 +1,19 @@
{ user, pkgs, ... }:
{
home-manager.users.${user} = {
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "eastwood";
};
};
};
}