This commit is contained in:
Nathan Anderson 2024-03-17 22:54:19 -06:00
parent bafcb6cb21
commit c65c49fbb8

View File

@ -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}";