nixos/system/base.nix
2024-06-08 15:07:01 +02:00

10 lines
193 B
Nix

{pkgs, ...}: {
users.mutableUsers = false;
users.users.root.password = "nixos";
services.getty.autologinUser = "root";
environment.systemPackages = with pkgs; [
vim
git
];
}