smaller fixes for laptop

This commit is contained in:
Thilo Billerbeck 2023-11-07 02:24:10 +01:00
parent c5ee0ba144
commit d82f09a15c
2 changed files with 6 additions and 3 deletions

View file

@ -12,7 +12,6 @@
machine = { machine = {
username = "thilo"; username = "thilo";
isGeneric = false; isGeneric = false;
nixPackage = pkgs.nixUnstable;
isGnome = false; isGnome = false;
noiseSuppression.enable = true; noiseSuppression.enable = true;
isGraphical = true; isGraphical = true;
@ -20,7 +19,7 @@
programs.obs-studio = { programs.obs-studio = {
enable = true; enable = true;
plugins = with pkgs.obs-studio-plugins; [ /* plugins = with pkgs.obs-studio-plugins; [
obs-vaapi obs-vaapi
obs-teleport obs-teleport
droidcam-obs droidcam-obs
@ -29,7 +28,7 @@
obs-command-source obs-command-source
obs-move-transition obs-move-transition
advanced-scene-switcher advanced-scene-switcher
]; ]; */
}; };
}; };
} }

View file

@ -159,5 +159,9 @@
security.polkit.enable = true; security.polkit.enable = true;
services.xserver.displayManager.defaultSession = "plasmawayland"; services.xserver.displayManager.defaultSession = "plasmawayland";
nixpkgs.config.permittedInsecurePackages = [
"electron-24.8.6"
];
system.stateVersion = "23.05"; system.stateVersion = "23.05";
} }