mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
This commit is contained in:
parent
c38f040574
commit
1ca14c360e
2 changed files with 12 additions and 1 deletions
|
@ -1,9 +1,18 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../packages.nix
|
../packages.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
|
||||||
|
extraModprobeConfig = ''
|
||||||
|
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
security.polkit.enable = true;
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
posy-cursors # Posy's Improved Cursors for Linux
|
posy-cursors # Posy's Improved Cursors for Linux
|
||||||
pantheon.elementary-gtk-theme # GTK theme designed to be smooth, attractive, fast, and usable
|
pantheon.elementary-gtk-theme # GTK theme designed to be smooth, attractive, fast, and usable
|
||||||
# internet
|
# internet
|
||||||
|
ngrok # Allows you to expose a web server running on your local machine to the internet
|
||||||
nicotine-plus # Graphical client for the SoulSeek peer-to-peer system
|
nicotine-plus # Graphical client for the SoulSeek peer-to-peer system
|
||||||
slack # Desktop client for Slack
|
slack # Desktop client for Slack
|
||||||
vesktop # Alternate client for Discord with Vencord built-in
|
vesktop # Alternate client for Discord with Vencord built-in
|
||||||
|
@ -92,6 +93,7 @@
|
||||||
catppuccin-sddm # Soothing pastel theme for SDDM
|
catppuccin-sddm # Soothing pastel theme for SDDM
|
||||||
kdePackages.kdenlive # Free and open source video editor, based on MLT Framework and KDE Frameworks
|
kdePackages.kdenlive # Free and open source video editor, based on MLT Framework and KDE Frameworks
|
||||||
nmap # Free and open source utility for network discovery and security auditing
|
nmap # Free and open source utility for network discovery and security auditing
|
||||||
|
obs-studio # Free and open source software for video recording and live streaming
|
||||||
qemu_kvm # Generic and open source machine emulator and virtualizer
|
qemu_kvm # Generic and open source machine emulator and virtualizer
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue