reduce config for test vm

This commit is contained in:
Sean Buckley 2021-05-26 00:36:00 -04:00
parent 0bce62202a
commit 9105bd132a

View file

@ -1,10 +1,5 @@
{ config, ... }: { config, lib, ... }:
{ {
sconfig.profile = "server"; sconfig.profile = "server";
boot.loader.systemd-boot.enable = true; users.users.root.password = "toor";
boot.loader.efi.canTouchEfiVariables = true;
fileSystems."/" = { device = "/dev/disk/by-partlabel/_root"; fsType = "ext4"; };
fileSystems."/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
security.sudo.wheelNeedsPassword = false;
users.users.root.openssh.authorizedKeys = config.users.users.sean.openssh.authorizedKeys;
} }