lol oops x3

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2021-05-17 21:28:20 -04:00
parent 3a7506c30d
commit 984508b295
1 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,14 @@
{ config, pkgs, ... }:
{ config, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules =
[ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
users.users.xe = {
isNormalUser = true;
initialPassword = "hunter2";
@ -11,4 +19,6 @@
};
services.openssh.enable = true;
security.sudo.wheelNeedsPassword = false;
}