21 lines
451 B
Nix
21 lines
451 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
../modules/home/shell.nix
|
|
../modules/home/fish.nix
|
|
../modules/home/git.nix
|
|
../modules/home/neovim.nix
|
|
../modules/home/diagnostic-tools.nix
|
|
../modules/home/cli-utils.nix
|
|
];
|
|
|
|
home.username = "mans";
|
|
home.homeDirectory = "/home/mans";
|
|
|
|
# See https://nix-community.github.io/home-manager/options.xhtml#opt-home.stateVersion
|
|
home.stateVersion = "26.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|