Initial commit

This commit is contained in:
Dennis Schoepf 2024-12-25 19:41:33 +01:00
commit 24e1cf0cbd
5 changed files with 233 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
home.username = "dennis";
home.homeDirectory = "/home/dennis";
home.stateVersion = "24.11";
home.packages = with pkgs; [
neofetch
zip
unzip
ripgrep
fzf
iotop
iftop
];
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = "Dennis Schoepf";
userEmail = "me@dnsc.io";
};
}