move common/users.nix into users/

This commit is contained in:
William 2026-02-07 09:49:52 -03:00
parent c6fbd21009
commit 0112637288
7 changed files with 150 additions and 104 deletions

12
aspects/users/root.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
flake.modules.nixos.root =
{ pkgs, ... }:
{
users.root = {
shell = pkgs.fish;
hashedPassword = "!";
};
};
}