dotfiles/home-manager/machines/laptop.nix

42 lines
753 B
Nix
Raw Normal View History

2023-05-16 23:02:01 +02:00
{ config, pkgs, lib, ... }:
2023-09-19 20:53:08 +02:00
{
2023-05-16 23:02:01 +02:00
imports = [
2023-09-19 20:53:08 +02:00
./../modules/machine.nix
2023-05-16 23:02:01 +02:00
];
2023-09-19 20:53:08 +02:00
machine = {
username = "thilo";
isGeneric = false;
nixPackage = pkgs.nixUnstable;
isGnome = false;
noiseSuppression.enable = true;
isGraphical = true;
};
2023-05-16 23:02:01 +02:00
2023-09-19 20:53:08 +02:00
wayland.windowManager.sway = {
2023-09-10 15:41:07 +02:00
enable = true;
2023-09-19 20:53:08 +02:00
config = rec {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "alacritty";
bars = [];
2023-09-10 15:41:07 +02:00
};
};
2023-09-19 20:53:08 +02:00
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
];
};
2023-05-16 23:02:01 +02:00
}