before git push

This commit is contained in:
maxstrb 2025-09-23 18:11:57 +02:00
parent d18110a018
commit 07d51c404c
10 changed files with 145 additions and 368 deletions

View file

@ -8,7 +8,7 @@
programs.home-manager.enable = true;
imports = [
../modules/hyprland.nix
./hyprland.nix
../modules/nvf.nix
../modules/stylix.nix
../modules/games.nix

45
home/main/hyprland.nix Normal file
View file

@ -0,0 +1,45 @@
{pkgs, ...}: {
imports = [
../modules/hyprland.nix
];
wayland.windowManager.hyprland = {
settings = {
workspace = [
"1, monitor:DP-1"
"2, monitor:DP-2"
];
};
extraConfig = "
monitor=DP-1,2560x1440@120,0x0,1
monitor=DP-2,1920x1080@60,-1920x300,1
xwayland {
force_zero_scaling = true
}
";
};
programs.hyprpanel = {
settings = {
bar = {
layouts = {
"*" = {
left = [
"dashboard"
"workspaces"
];
middle = [];
right = [
"volume"
"clock"
"systray"
"notifications"
];
};
};
};
};
};
}