From c65c49fbb88f42b2d0cd5068cfa69b6eea9b4171 Mon Sep 17 00:00:00 2001 From: Nathan Anderson Date: Sun, 17 Mar 2024 22:54:19 -0600 Subject: [PATCH] oops --- luci/modules/home-manager/home.nix | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) 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}";