removed let variable for readability

This commit is contained in:
Bryan Ramos 2024-11-05 06:00:59 -05:00
parent edaffee627
commit 6d9d2fe824
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8

View file

@ -4,10 +4,17 @@ with lib;
let
modules = config.modules.user;
userConfigs = rec {
in
{
options = {
user = mkOption {
description = "User Configurations";
type = types.attrs;
default = rec {
name = "bryan";
email = "bryan@ramos.codes";
shell = pkgs.bash;
keys = import ./keys;
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
@ -20,17 +27,8 @@ userConfigs = rec {
};
};
keys = import ./keys;
bookmarks = import ./bookmarks;
};
in
{
options = {
user = mkOption {
description = "User Configurations";
type = types.attrs;
default = userConfigs;
};
};
}