config: replaced options and config with options.shell and config.shell
This commit is contained in:
+3
-3
@@ -2,8 +2,8 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
let
|
||||
name = "${config.name}";
|
||||
homeDir = "${config.homeDirectory}";
|
||||
name = "${config.shell.name}";
|
||||
homeDir = "${config.shell.homeDirectory}";
|
||||
myAliases = {
|
||||
ll = "ls -hl";
|
||||
la = "ls -ahl";
|
||||
@@ -67,7 +67,7 @@ in
|
||||
enable = true;
|
||||
settings.user = {
|
||||
inherit name;
|
||||
email = config.email;
|
||||
email = config.shell.email;
|
||||
};
|
||||
};
|
||||
starship = {
|
||||
|
||||
Reference in New Issue
Block a user