Evie Litherland-Smith
b102f9e209
Reduce complexity and in flake.nix and be more efficient in re-using things Removed some reduandant files in home/ and tidied up the structure somewhat Moved things from desktop, gui, etc... to top level Changed env to shell, indiv shell expressions import relevant others
18 lines
399 B
Nix
18 lines
399 B
Nix
{...}: {
|
|
imports = [./default.nix];
|
|
programs = {
|
|
bash.enable = true;
|
|
readline = {
|
|
enable = true;
|
|
includeSystemConfig = true;
|
|
extraConfig = ''
|
|
set completion-ignore-case On
|
|
'';
|
|
};
|
|
direnv.enableBashIntegration = true;
|
|
fzf.enableBashIntegration = true;
|
|
keychain.enableBashIntegration = true;
|
|
starship.enableBashIntegration = true;
|
|
};
|
|
}
|