Add host: bennu
- Separate nixpkgs for `sombrero` from `bennu`
This commit is contained in:
24
hosts/bennu/home.nix
Normal file
24
hosts/bennu/home.nix
Normal 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";
|
||||
}
|
||||
Reference in New Issue
Block a user