diff options
Diffstat (limited to 'machines/x220')
-rw-r--r-- | machines/x220/configuration.nix | 1 | ||||
-rwxr-xr-x | machines/x220/hardware-configuration.nix | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/machines/x220/configuration.nix b/machines/x220/configuration.nix index 18f600e..c98548f 100644 --- a/machines/x220/configuration.nix +++ b/machines/x220/configuration.nix @@ -45,6 +45,7 @@ in ''; environment.systemPackages = with pkgs; [ + usbutils discord # Basic tools groff file ssh-ident busybox_utils diff --git a/machines/x220/hardware-configuration.nix b/machines/x220/hardware-configuration.nix index c9d9e1d..cf9c47e 100755 --- a/machines/x220/hardware-configuration.nix +++ b/machines/x220/hardware-configuration.nix @@ -12,8 +12,8 @@ boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" "tp_smapi" ]; - boot.extraModulePackages = with config.boot.kernelPackages; [ tp_smapi ]; + boot.kernelModules = [ "kvm-intel" "tp_smapi" "v4l2loopback" ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback tp_smapi ]; boot.loader.grub.enable = true; |