2024-03-24 23:39:49 +01:00
|
|
|
{
|
2024-05-05 20:12:48 +02:00
|
|
|
inputs,
|
|
|
|
outputs,
|
2024-03-24 23:39:49 +01:00
|
|
|
...
|
2024-05-05 20:12:48 +02:00
|
|
|
}:
|
|
|
|
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
|
|
|
|
home = {
|
|
|
|
enable-speech = true;
|
|
|
|
nvim = {
|
|
|
|
enable-lsp = true;
|
|
|
|
enable-treesitter = true;
|
|
|
|
};
|
|
|
|
git = {
|
|
|
|
profile = {
|
|
|
|
name = "Gabe Venberg";
|
|
|
|
email = "gabevenberg@gmail.com";
|
|
|
|
};
|
|
|
|
workProfile.enable = false;
|
|
|
|
};
|
2024-03-25 04:56:01 +01:00
|
|
|
};
|
2024-05-08 05:20:11 +02:00
|
|
|
host.isLaptop = true;
|
2024-03-24 23:39:49 +01:00
|
|
|
|
2024-05-05 20:12:48 +02:00
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
home.username = "gabe";
|
|
|
|
home.homeDirectory = /home/gabe;
|
|
|
|
imports = [
|
2024-05-10 00:47:54 +02:00
|
|
|
../roles/home-manager/terminal.nix
|
2024-05-17 20:47:30 +02:00
|
|
|
../roles/home-manager/music.nix
|
2024-05-08 05:20:11 +02:00
|
|
|
../modules/home-manager/common.nix
|
2024-05-05 20:12:48 +02:00
|
|
|
../modules/home-manager/syncthing.nix
|
|
|
|
../modules/home-manager/email.nix
|
2024-05-15 18:32:19 +02:00
|
|
|
../modules/home-manager/terminal/voice.nix
|
2024-05-05 20:12:48 +02:00
|
|
|
];
|
|
|
|
})
|
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
2024-03-24 23:39:49 +01:00
|
|
|
];
|
|
|
|
}
|