Gabe Venberg
380b92d50b
I think just is still a good fit for this. Much more and a nushell script might be more appropriate.
34 lines
591 B
Nix
34 lines
591 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
# machine specific options
|
|
host = {
|
|
enable-speech = true;
|
|
nvim = {
|
|
enable-lsp = true;
|
|
enable-treesitter = true;
|
|
};
|
|
git = {
|
|
profile = {
|
|
name = "Gabe Venberg";
|
|
email = "gabevenberg@gmail.com";
|
|
};
|
|
workProfile = {
|
|
enable = true;
|
|
email = "venberggabe@johndeere.com";
|
|
};
|
|
};
|
|
};
|
|
|
|
targets.genericLinux.enable = true;
|
|
home.username = "gabe";
|
|
home.homeDirectory = "/home/gabe";
|
|
imports = [
|
|
../modules/home-manager/terminal
|
|
../modules/home-manager
|
|
];
|
|
}
|