16 lines
242 B
Nix
16 lines
242 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../../home
|
|
];
|
|
home.packages = with pkgs; [
|
|
brightnessctl
|
|
];
|
|
wayland.windowManager.hyprland = {
|
|
extraConfig = ''
|
|
# Default portable monitor rule
|
|
monitor=DP-1,3840x1080@144,1920x0,1
|
|
'';
|
|
};
|
|
}
|