nix-config/hosts/home-personal.nix
Gabe Venberg 6f0e167087 added enable option to nvim
changed home-manager personal config namespace from home.* to user.*
2024-05-29 13:40:03 -05:00

44 lines
1 KiB
Nix

{
inputs,
outputs,
...
}:
inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = {inherit inputs outputs;};
modules = [
({
config,
pkgs,
lib,
...
}: {
# machine specific options
user = {
enable-speech = true;
git = {
profile = {
name = "Gabe Venberg";
email = "gabevenberg@gmail.com";
};
workProfile.enable = false;
};
};
host.isLaptop = true;
targets.genericLinux.enable = true;
home.username = "gabe";
home.homeDirectory = /home/gabe;
imports = [
../roles/home-manager/terminal.nix
../roles/home-manager/music.nix
../modules/home-manager/common.nix
../modules/home-manager/syncthing.nix
../modules/home-manager/email.nix
../modules/home-manager/terminal/voice.nix
];
})
inputs.nixvim.homeManagerModules.nixvim
];
}