restructure home manager configs

This commit is contained in:
2025-06-24 18:47:45 +02:00
parent 6ca250dbaf
commit fe586d4a56
32 changed files with 58 additions and 58 deletions

View File

@ -0,0 +1,9 @@
{
# Home Manager Hyprland monitors
wayland.windowManager.hyprland.settings.monitor = [
"DP-3, 3440x1440@99.98, 0x0, 1" # Philips Ultrawide left
"HDMI-A-1, 3440x1440@99.98, 3440x0, 1" # Philips Ultrawide right
"eDP-1, 1920x1200@60.00, 6880x240, 1" # internal display
];
}

View File

@ -0,0 +1,3 @@
{
programs.hyprlock.settings.background.path = "$HOME/git/nix-config/modules/hm/images/control-panel.png";
}

View File

@ -0,0 +1,17 @@
{
services.hyprpaper = {
enable = true;
settings = {
preload = [
"$HOME/git/nix-config/modules/hm/images/nix.png"
"$HOME/git/nix-config/modules/hm/images/forest.png"
];
wallpaper = [
", $HOME/git/nix-config/modules/hm/images/nix.png"
"DP-3, $HOME/git/nix-config/modules/hm/images/forest.png"
"HDMI-A-1, $HOME/git/nix-config/modules/hm/images/forest.png"
"eDP-1, $HOME/git/nix-config/modules/hm/images/forest.png"
];
};
};
}