Add host: bennu

- Separate nixpkgs for `sombrero` from `bennu`
This commit is contained in:
Alexander Heldt
2023-07-20 11:15:39 +02:00
parent d28a6bf082
commit 209525b7e2
7 changed files with 258 additions and 15 deletions

24
hosts/bennu/home.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
programs.home-manager.enable = true;
home.username = "alex";
home.homeDirectory = "/home/alex";
home.packages = with pkgs; [
vim
emacs
gnumake
tig
firefox-devedition-unwrapped
];
programs.git = {
enable = true;
includes = [
{ path = ./configs/.gitconfig; }
];
};
home.stateVersion = "23.05";
}