30 lines
564 B
Nix
30 lines
564 B
Nix
{ pkgs, inputs, self, ... }:
|
|
{
|
|
imports = map (x: ../../../home-manager + x) [
|
|
"/features/linux-desktop.nix"
|
|
"/features/development-linux.nix"
|
|
"/features/haskell.nix"
|
|
"/features/nix.nix"
|
|
"/features/gaming.nix"
|
|
"/apps/element.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
|
|
];
|
|
}
|