22 lines
418 B
Nix
22 lines
418 B
Nix
|
{
|
||
|
inputs,
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
# Home Manager needs a bit of information about you and the paths it should
|
||
|
# manage.
|
||
|
# machine specific options
|
||
|
host.enable-speech = true;
|
||
|
#host.nvim.enable-lsp = true;
|
||
|
#host.nvim.enable-treesitter = true;
|
||
|
|
||
|
home.username = "gabe";
|
||
|
home.homeDirectory = "/home/gabe";
|
||
|
imports = [
|
||
|
../../terminal/home.nix
|
||
|
inputs.nixvim.homeManagerModules.nixvim
|
||
|
];
|
||
|
}
|