25 lines
419 B
Nix
25 lines
419 B
Nix
{ 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
|
|
];
|
|
}
|