[Nix] Adds MCP config.

This commit is contained in:
2025-03-02 14:34:22 -08:00
parent 4c5ea117f9
commit 871a065ea8
24 changed files with 1062 additions and 16 deletions

24
system/hosts/mcp/drew.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
imports = map (x: ../../../home-manager + x) [
"/features/development/development.nix"
];
home.stateVersion = "24.11";
home.username = "drew";
home.homeDirectory = "/home/drew";
programs.git = {
userName = "Drew Haven";
userEmail = "drew.haven@gmail.com";
};
home.packages = with pkgs; [
# Applications
discord
signal-desktop
obsidian
firefox
];
}