nixfiles/home-manager/evaluate.nix
Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

15 lines
290 B
Nix

{ core, ... }:
{ config, ... }:
if config.home-manager.shell != null
then
{
homeDirectory.user.${}
= {
home.file.".local/bin/shell"
= {
target = config.home-manager.shell;
};
};
}
else
{}