From d4f7650cd0735d1fe9173530cc31c24b65ed44ff Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 3 Jun 2024 20:50:58 +0530 Subject: global/font: init --- global/userdata.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 global/userdata.nix (limited to 'global/userdata.nix') diff --git a/global/userdata.nix b/global/userdata.nix deleted file mode 100644 index d591920..0000000 --- a/global/userdata.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ config, lib, ... }: let - cfg = config.global.userdata; -in { - options.global.userdata = { - name = lib.mkOption { - type = lib.types.str; - default = "sinan"; - description = "Owner's username"; - }; - nameFq = lib.mkOption { - type = lib.types.str; - default = "sinanmohd"; - description = "Owner's fully qualified username"; - }; - domain = lib.mkOption { - type = lib.types.str; - default = "sinanmohd.com"; - description = "Owner's domain"; - }; - email = lib.mkOption { - type = lib.types.str; - default = "${cfg.name}@${cfg.domain}"; - description = "Owner's email"; - }; - }; -} -- cgit v1.2.3