This commit is contained in:
alyx 2025-07-27 00:01:27 +01:00
parent 708a3c4c00
commit 5e999cc1e2
No known key found for this signature in database
3 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,7 @@
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PasswordAuthentication = true;
KbdInteractiveAuthentication = false;
};
};

View file

@ -181,11 +181,13 @@
users.users.alyx = {
isNormalUser = true;
description = "Alyx";
extraGroups = [ "networkmanager" "wheel" "camera" ];
extraGroups = [ "networkmanager" "wheel" "camera" "libvirtd" "qemu-libvirtd" "lxd" ];
packages = with pkgs; [
];
};
programs.virt-manager.enable = true;
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
};

View file

@ -6,5 +6,6 @@
../substituters.nix
../fonts.nix
../greetd.nix
../virtualisation/virtualisation.nix
];
}