15 lines
290 B
Nix
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
|
|
{} |