12 lines
162 B
Nix
12 lines
162 B
Nix
{ ... }:
|
|
|
|
{
|
|
flake.modules.nixos.root =
|
|
{ pkgs, ... }:
|
|
{
|
|
users.root = {
|
|
shell = pkgs.fish;
|
|
hashedPassword = "!";
|
|
};
|
|
};
|
|
}
|