2024-03-24 23:39:49 +01: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;
|
|
|
|
|
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
home.username = "gabe";
|
|
|
|
home.homeDirectory = "/home/gabe";
|
|
|
|
imports = [
|
2024-03-25 01:41:56 +01:00
|
|
|
../terminal/terminal.nix
|
2024-03-24 23:39:49 +01:00
|
|
|
];
|
|
|
|
}
|