mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
16 lines
251 B
Nix
16 lines
251 B
Nix
{
|
|
lib,
|
|
minimal,
|
|
...
|
|
}:
|
|
lib.optionalAttrs (!minimal) {
|
|
programs.nushell = {
|
|
enable = true;
|
|
configFile.source = ./config.nu;
|
|
envFile.source = ./env.nu;
|
|
};
|
|
|
|
home.persistence."/persist".directories = [
|
|
".config/nushell"
|
|
];
|
|
}
|