aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-13 15:19:21 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-13 15:19:21 -0800
commit771039f64d44a60f9691582fe559e26b431bbbe8 (patch)
tree1f980dd57b0f3256825f04f101c81ae458a4b424 /modules/home-manager.nix
parentupdate builders configuration (diff)
downloadinfra-771039f64d44a60f9691582fe559e26b431bbbe8.tar.gz
remove abstractions for managing users
Diffstat (limited to 'modules/home-manager.nix')
-rw-r--r--modules/home-manager.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/home-manager.nix b/modules/home-manager.nix
deleted file mode 100644
index 7a9ae43..0000000
--- a/modules/home-manager.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- adminUser,
- ...
-}:
-{
- home-manager = {
- users.${adminUser.name} = {
- home.username = "${adminUser.name}";
- inherit (adminUser) userinfo;
- };
- };
-}