Initial commit
This commit is contained in:
commit
24e1cf0cbd
5 changed files with 233 additions and 0 deletions
25
hosts/dnsc-server/home.nix
Normal file
25
hosts/dnsc-server/home.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue