20 lines
No EOL
319 B
Nix
20 lines
No EOL
319 B
Nix
{ inputs, outputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./features/wayland/window-manager/hyprland
|
|
./base
|
|
];
|
|
|
|
monitors = [{
|
|
name = "eDP-1";
|
|
width = 1920;
|
|
height = 1080;
|
|
workspace = "1";
|
|
primary = true;
|
|
transform = 0;
|
|
}];
|
|
|
|
colorscheme = inputs.nix-colors.colorSchemes.gruvbox-dark-soft;
|
|
|
|
} |