19 lines
398 B
Nix
19 lines
398 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/home-manager/git.nix
|
|
../../modules/home-manager/nvim.nix
|
|
../../modules/home-manager/programs.nix
|
|
../../modules/home-manager/shell.nix
|
|
../../modules/home-manager/styling.nix
|
|
../../modules/home-manager/tmux.nix
|
|
];
|
|
|
|
home = {
|
|
username = "aaron";
|
|
homeDirectory = "/home/aaron";
|
|
stateVersion = "25.11";
|
|
};
|
|
}
|