diff options
Diffstat (limited to 'platforms/linux')
-rw-r--r-- | platforms/linux/configuration.nix | 9 | ||||
-rw-r--r-- | platforms/linux/xorg/config.h | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/platforms/linux/configuration.nix b/platforms/linux/configuration.nix index ec64b83..dcf2e1b 100644 --- a/platforms/linux/configuration.nix +++ b/platforms/linux/configuration.nix @@ -53,6 +53,15 @@ in boot.plymouth.enable = true; boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + boot.extraModulePackages = with pkgs.linuxPackages; [ + v4l2loopback + ]; + + boot.kernelModules = [ "v4l2loopback" ]; + boot.extraModprobeConfig = '' + options v4l2loopback exclusive_caps=1 video_nr=9 card_label="obs" + ''; + fileSystems = { "/home" = { device = "/dev/disk/by-label/home"; diff --git a/platforms/linux/xorg/config.h b/platforms/linux/xorg/config.h index b8d1bab..a3287dd 100644 --- a/platforms/linux/xorg/config.h +++ b/platforms/linux/xorg/config.h @@ -190,7 +190,7 @@ static Key keys[] = { /* { MODKEY|ShiftMask, XK_z, spawn, SHCMD("") }, */ { MODKEY, XK_x, incrgaps, {.i = -3 } }, /* { MODKEY|ShiftMask, XK_x, spawn, SHCMD("") }, */ - /* { MODKEY, XK_c, spawn, SHCMD("") }, */ + { MODKEY, XK_c, spawn, SHCMD("Discord") }, /* { MODKEY|ShiftMask, XK_c, spawn, SHCMD("") }, */ /* V is automatically bound above in STACKKEYS */ { MODKEY, XK_b, togglebar, {0} }, |