2025-04-15 23:22:49 +02:00
|
|
|
{
|
|
|
|
lib,
|
2025-04-15 23:39:10 +02:00
|
|
|
inputs,
|
2025-04-15 23:22:49 +02:00
|
|
|
outputs,
|
|
|
|
systemConfig,
|
|
|
|
...
|
|
|
|
}:
|
2025-04-15 21:14:17 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2025-04-15 23:39:10 +02:00
|
|
|
inputs.catppuccin.homeModules.catppuccin
|
2025-04-15 21:14:17 +00:00
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/development/git.nix")
|
2025-04-17 12:49:59 +00:00
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/shell/btop.nix")
|
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/shell/fastfetch.nix")
|
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/shell/fish.nix")
|
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/shell/zoxide.nix")
|
2025-04-15 23:22:49 +02:00
|
|
|
(lib.custom.relativeToRoot "shared/home-manager/gpg.nix")
|
2025-04-16 09:26:50 +00:00
|
|
|
./helix.nix
|
2025-04-15 21:14:17 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
home.stateVersion = systemConfig.version;
|
|
|
|
|
2025-04-15 23:22:49 +02:00
|
|
|
# Adds pkgs.unstable in order to fetch packages from unstable repositories
|
|
|
|
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
|
2025-04-15 21:14:17 +00:00
|
|
|
|
2025-04-15 23:22:49 +02:00
|
|
|
programs = {
|
|
|
|
git.signing.key = "E3FA0E995C0D0E5E";
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
home-manager.enable = true;
|
2025-04-15 21:14:17 +00:00
|
|
|
};
|
2025-04-15 23:22:49 +02:00
|
|
|
|
2025-04-15 21:14:17 +00:00
|
|
|
}
|