This commit is contained in:
Sean Kovacs 2025-12-08 12:18:05 -05:00
commit 7e17ef312d
Signed by: sckova
GPG key ID: 00F325187C68651A
8 changed files with 119 additions and 93 deletions

View file

@ -1,28 +1,46 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot.kernelModules = [
"v4l2loopback"
"snd-aloop"
];
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ];
boot.extraModprobeConfig = ''
# exclusive_caps: Skype, Zoom, Teams etc. will only show device when actually streaming
# card_label: Name of virtual camera, how it'll show up in Skype, Zoom, Teams
# https://github.com/umlaeute/v4l2loopback
options v4l2loopback exclusive_caps=1 card_label="Virtual Camera"
'';
fileSystems."/" =
{ device = "/dev/disk/by-uuid/8a3cb91f-2e3f-498d-8613-230976dff36e";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/8a3cb91f-2e3f-498d-8613-230976dff36e";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/FA86-1704";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/FA86-1704";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
swapDevices = [ ];