Create proxmox configuration, create izanagi config, update readme, move configurations to /machines/

This commit is contained in:
Alexander Derevianko
2025-07-31 11:55:28 +02:00
parent 20f36c7842
commit 65e54e0991
23 changed files with 521 additions and 4 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
];
}