♻️ [shared] Moved Hm configs to shared base

This commit is contained in:
2025-05-22 20:10:48 +02:00
parent 2b020958ed
commit 53329b8d1c
17 changed files with 60 additions and 68 deletions

View File

@ -1,33 +1,9 @@
{
lib,
inputs,
outputs,
systemConfig,
...
}:
{ lib, ... }:
{
imports = [
inputs.catppuccin.homeModules.catppuccin
(lib.custom.relativeToRoot "shared/desktop/home-manager/development/git.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/development/helix.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/btop.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/eza.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/fastfetch.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/fish.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/zoxide.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/gpg.nix")
imports = with lib.custom; [
(relativeToBase "home-manager")
];
home.stateVersion = systemConfig.version;
# Adds pkgs.unstable in order to fetch packages from unstable repositories
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
programs = {
git.signing.key = "E3FA0E995C0D0E5E";
# Let Home Manager install and manage itself.
home-manager.enable = true;
};
programs.git.signing.key = "E3FA0E995C0D0E5E";
}