nix-config/hosts/gabe-gv-workstation.nix

39 lines
780 B
Nix
Raw Normal View History

2024-03-24 22:56:01 -05:00
{
config,
pkgs,
lib,
...
}: {
2024-03-25 00:11:55 -05:00
# machine specific options
home = {
2024-03-24 22:56:01 -05:00
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;
2024-03-24 22:56:01 -05:00
imports = [
../modules/home-manager/terminal
../modules/home-manager/nvim
../modules/home-manager
2024-03-31 17:46:34 -05:00
../modules/home-manager/syncthing.nix
2024-04-16 13:30:03 -05:00
../modules/home-manager/email.nix
2024-04-22 16:35:34 -05:00
../modules/home-manager/beets.nix
../modules/home-manager/mpd/mpd.nix
2024-03-24 22:56:01 -05:00
];
}