Separate hyprland config from home for lappy.

This commit is contained in:
jay
2025-07-02 10:52:53 -04:00
parent f786b4020a
commit b743b7b35d
2 changed files with 8 additions and 6 deletions

View File

@@ -1,13 +1,8 @@
{ config, pkgs, inputs, lib, ... }:
{
imports = [
./programs/hyprland.nix
./programs/hyprpanel.nix
];
wayland.windowManager.hyprland = {
settings = {
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
};
};
}

View File

@@ -0,0 +1,7 @@
{ pkgs, lib, ... }: {
wayland.windowManager.hyprland = {
settings = {
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
};
};
}