diff --git a/luci/modules/home-manager/home.nix b/luci/modules/home-manager/home.nix index 873c04d..56ae56d 100644 --- a/luci/modules/home-manager/home.nix +++ b/luci/modules/home-manager/home.nix @@ -1,31 +1,10 @@ { lib, config, pkgs, ... }: let - userName = "jaci"; - fullName = "Jaci Anderson"; - email = "jaci.s.anderson@gmail.com"; + userName = "luci"; + fullName = "Luci NAS"; + email = "luci@fosscat.com"; in { - # nixpkgs.overlays = [ - # inputs.nur.overlay - # ]; - - # nixpkgs.config.allowUnfree = true; - # inputs.nixpkgs-stable.config.allowUnfree = true; - # options.homeConfig = { - # userName = lib.mkOption { - # type = lib.types.str; - # description = "Main username for system"; - # }; - # hostName = lib.mkOption { - # type = lib.types.str; - # description = "Hostname for system"; - # }; - # fullName = lib.mkOption { - # type = lib.types.str; - # description = "Hostname for system"; - # }; - # }; - home.username = userName; home.homeDirectory = "/home/${userName}";