nix-config/hosts/gabe-gv-workstation.nix
Gabe Venberg 9eb783a3e8 moved home-manager options to the "home" namespace
this frees up the "host" namespace for host-wide options.
2024-04-23 16:56:34 -05:00

39 lines
780 B
Nix

{
config,
pkgs,
lib,
...
}: {
# machine specific options
home = {
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/nvim
../modules/home-manager
../modules/home-manager/syncthing.nix
../modules/home-manager/email.nix
../modules/home-manager/beets.nix
../modules/home-manager/mpd/mpd.nix
];
}