Restructures directories

This commit is contained in:
Dennis Schoepf 2024-12-25 20:27:44 +01:00
parent 305b6c1d69
commit 80b5991b6e
3 changed files with 2 additions and 2 deletions

26
home/default.nix Normal file
View file

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