Files
nixfiles/emmathorpe/home/default.nix
T

14 lines
335 B
Nix
Raw Normal View History

2026-06-02 07:40:25 -07:00
# Base home-manager profile, shared by every host (graphical or headless).
# Graphical hosts additionally import ./desktop.nix; the work host imports
# ../../system/modules/work/default.nix. See the host table in flake.nix.
{ ... }:
{
imports = [
./shell.nix
./git.nix
./editor.nix
];
home.stateVersion = "25.05";
}