mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
34 lines
735 B
Nix
34 lines
735 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
home-manager.users.thilo = {
|
|
imports = [
|
|
./../../home-manager/modules/machine.nix
|
|
];
|
|
|
|
machine = {
|
|
username = "thilo";
|
|
isGeneric = false;
|
|
isGnome = false;
|
|
noiseSuppression.enable = true;
|
|
isGraphical = true;
|
|
};
|
|
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
/* plugins = with pkgs.obs-studio-plugins; [
|
|
obs-vaapi
|
|
obs-teleport
|
|
droidcam-obs
|
|
obs-gstreamer
|
|
obs-shaderfilter
|
|
obs-command-source
|
|
obs-move-transition
|
|
advanced-scene-switcher
|
|
]; */
|
|
};
|
|
};
|
|
}
|