27 lines
468 B
Nix
27 lines
468 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Shell (deviations)
|
|
./shell/zsh.nix
|
|
./shell/starship.nix
|
|
|
|
# Dev (deviations)
|
|
./dev/git.nix
|
|
./dev/ssh-client.nix
|
|
./dev/direnv.nix
|
|
|
|
# Desktop overrides (deviations)
|
|
./desktop/hyprland-overrides.nix
|
|
./desktop/waybar-overrides.nix
|
|
./desktop/hyprshell.nix
|
|
|
|
# apps
|
|
./apps/default-apps.nix
|
|
];
|
|
|
|
# Home Manager should manage XDG base dirs consistently
|
|
xdg.enable = true;
|
|
|
|
}
|