lol oops x3
Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
parent
3a7506c30d
commit
984508b295
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue