nix-config/hosts/archlaptop/home.nix

22 lines
426 B
Nix
Raw Normal View History

2024-03-24 19:26:19 -05:00
{
inputs,
2024-03-24 19:26:19 -05:00
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;
2024-03-24 19:26:19 -05:00
home.username = "gabe";
home.homeDirectory = "/home/gabe";
imports = [
../../terminal/terminal.nix
inputs.nixvim.homeManagerModules.nixvim
2024-03-24 19:26:19 -05:00
];
}