10 lines
201 B
Nix
10 lines
201 B
Nix
|
|
# Base home-manager configuration — always loaded on every host.
|
||
|
|
# Includes shell, CLI tools, and secrets modules.
|
||
|
|
{...}: {
|
||
|
|
imports = [
|
||
|
|
./shell
|
||
|
|
./cli-tools
|
||
|
|
./secrets/secrets.nix
|
||
|
|
];
|
||
|
|
}
|