mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
Rename shell enhancement module
This commit is contained in:
parent
3444dab7d4
commit
7481d44f0a
3 changed files with 4 additions and 4 deletions
|
|
@ -8,7 +8,7 @@ in {
|
|||
imports = [
|
||||
./starship.nix
|
||||
./direnv.nix
|
||||
./enhancedCommands.nix
|
||||
./enhancement.nix
|
||||
./nixAliases.nix
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
options.myConfig.shell.enhancedCommands.enable = lib.mkEnableOption "";
|
||||
options.myConfig.shell.enhancement.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.shell.enhancedCommands.enable {
|
||||
config = lib.mkIf config.myConfig.shell.enhancement.enable {
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
Loading…
Add table
Add a link
Reference in a new issue