added user import module

This commit is contained in:
2025-10-04 15:56:53 -05:00
parent c783649784
commit d13803e3b1

10
users/users.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, config, lib, ... }:
{
imports = [
./blake/blake.nix
];
users.blake.enable = lib.mkDefault true;
}