Added izanagi

This commit is contained in:
Alexander Derevianko
2025-07-31 16:46:33 +02:00
parent c62940176b
commit 045687bb5f
10 changed files with 314 additions and 7 deletions
+29
View File
@@ -0,0 +1,29 @@
{ config, lib, pkgs, inputs, extraHomeModules, username, ... }:
{
home = {
stateVersion = "25.05";
username = username;
homeDirectory = "/home/${username}";
};
dov = {
shell = {
zsh = {
enable = true;
shellAliases = {
ll = "eza -al";
sc = "source $HOME/.zshrc";
psax = "ps ax | grep";
cp = "rsync -ah --progress";
};
};
};
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
eza
];
}