before git push
This commit is contained in:
parent
d18110a018
commit
07d51c404c
10 changed files with 145 additions and 368 deletions
|
|
@ -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
45
home/main/hyprland.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue