diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 8082cfb..53383a1 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -1,10 +1,5 @@ -{ config, ... }: +{ config, lib, ... }: { sconfig.profile = "server"; - boot.loader.systemd-boot.enable = true; - 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; + users.users.root.password = "toor"; }