aboutsummaryrefslogtreecommitdiff
path: root/nix/users/modules
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-21 12:49:14 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-21 12:49:14 -0700
commit3d6af5dc1c31d481a458ce00550b193d35648e32 (patch)
treebc343c343ffba009d33a95dcdffd5562ff0fc3ef /nix/users/modules
parentinstall minimal home-manager profile on the VM (diff)
downloadinfra-3d6af5dc1c31d481a458ce00550b193d35648e32.tar.gz
move user configurations to top-level
Diffstat (limited to 'nix/users/modules')
-rw-r--r--nix/users/modules/userinfo.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/nix/users/modules/userinfo.nix b/nix/users/modules/userinfo.nix
deleted file mode 100644
index 46afc73..0000000
--- a/nix/users/modules/userinfo.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ lib, ... }:
-{
- options = with lib; {
- userinfo = {
- fullName = mkOption {
- type = types.str;
- example = "Someone Someonesson";
- };
- email = mkOption {
- type = types.str;
- example = "some@email.com";
- };
- };
- };
-}