Move izanagi configs to new structure

This commit is contained in:
Alexander
2025-08-03 21:12:53 +02:00
parent b1bd7dcda8
commit 04e65f4939
11 changed files with 21 additions and 36 deletions
+29
View File
@@ -0,0 +1,29 @@
{ config, lib, pkgs, username, ... }:
{
home = {
inherit username;
stateVersion = "25.05";
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
];
}