mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
8 lines
291 B
Nix
8 lines
291 B
Nix
{ config, ... }:
|
|
{
|
|
sconfig.profile = "server";
|
|
boot.loader.grub.device = "/dev/vda";
|
|
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
|
security.sudo.wheelNeedsPassword = false;
|
|
users.users.root.openssh.authorizedKeys = config.users.users.sean.openssh.authorizedKeys;
|
|
}
|