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 = { services.openssh = {
enable = true; enable = true;
settings = { settings = {
PasswordAuthentication = false; PasswordAuthentication = true;
KbdInteractiveAuthentication = false; KbdInteractiveAuthentication = false;
}; };
}; };

View file

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

View file

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