[tarro] Adds new config for tarro-mbp

This commit is contained in:
Drew Haven
2025-02-04 10:44:38 -08:00
parent 7a77470343
commit e65e2963e6
5 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ pkgs, self, ... }:
{
imports = [
../../../home-manager/features/shell.nix
../../../home-manager/features/terminal.nix
../../../home-manager/features/neovim.nix
];
home.username = "drew";
home.homeDirectory = "/Users/drew";
nix.settings.experimental-features = ["flakes" "nix-command"];
home.packages = with pkgs; [
];
home.stateVersion = "24.11";
}