13 lines
129 B
Nix
13 lines
129 B
Nix
|
{ lib, config, ...}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./aliases.nix
|
||
|
./functions.nix
|
||
|
];
|
||
|
|
||
|
programs.fish = {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|