Configure the display on a per host basis

This commit is contained in:
SebastianStork 2024-04-06 00:03:51 +02:00
parent 0cb5f16ecf
commit ad55f84391
3 changed files with 18 additions and 12 deletions

View file

@ -1,9 +1,13 @@
{pkgs, ...}: {
imports = [./default.nix];
home-manager.users.seb.home.packages = [
pkgs.obs-studio
pkgs.libsForQt5.kdenlive
pkgs.gimp
];
home-manager.users.seb = {
home.packages = [
pkgs.obs-studio
pkgs.libsForQt5.kdenlive
pkgs.gimp
];
wayland.windowManager.hyprland.settings.monitor = "DP-2,2560x1440@144,0x0,1";
};
}