initial commit

This commit is contained in:
2026-01-15 20:39:00 +01:00
commit a1026de8e1
4 changed files with 114 additions and 0 deletions

27
home.nix Normal file
View File

@@ -0,0 +1,27 @@
{ pkgs, lib, ... }:
{
# Home Manager state version
home.stateVersion = "25.11";
home.username = "avravels";
home.homeDirectory = "/home/avravels";
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "agnoster";
};
};
home.packages = with pkgs; [
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}