You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
796 B
44 lines
796 B
{ inputs, ... }: {
|
|
imports = [
|
|
./global
|
|
./features/desktop/hyprland
|
|
./features/rgb
|
|
./features/productivity
|
|
./features/pass
|
|
./features/games
|
|
./features/music
|
|
];
|
|
|
|
colorscheme = inputs.nix-colors.colorSchemes.catppuccin-macchiato;
|
|
|
|
# ------ ----- ------
|
|
# | DP-3 | | DP-1| | DP-2 |
|
|
# ------ ----- ------
|
|
monitors = [
|
|
{
|
|
name = "DP-3";
|
|
width = 1920;
|
|
height = 1080;
|
|
noBar = true;
|
|
x = 0;
|
|
workspace = "3";
|
|
enabled = false;
|
|
}
|
|
{
|
|
name = "DP-1";
|
|
width = 2560;
|
|
height = 1080;
|
|
refreshRate = 75;
|
|
x = 1920;
|
|
workspace = "1";
|
|
}
|
|
{
|
|
name = "DP-2";
|
|
width = 1920;
|
|
height = 1080;
|
|
noBar = true;
|
|
x = 4480;
|
|
workspace = "2";
|
|
}
|
|
];
|
|
}
|
|
|