mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
35 lines
764 B
Nix
35 lines
764 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
common/core
|
|
common/optional/desktops/sway
|
|
common/optional/browsers
|
|
common/optional/comms
|
|
common/optional/media
|
|
common/optional/gaming
|
|
common/optional/misc/gromit-mpx.nix
|
|
common/optional/misc/art.nix
|
|
common/optional/misc/ai.nix
|
|
];
|
|
|
|
monitors = [
|
|
{
|
|
name = "HDMI-A-1";
|
|
width = 1920;
|
|
height = 1080;
|
|
refreshRate = 75;
|
|
transform = 270;
|
|
background = lib.custom.relativeToRoot "assets/wallpapers/desert_worm.jpg";
|
|
}
|
|
{
|
|
name = "DP-1";
|
|
primary = true;
|
|
width = 2560;
|
|
height = 1440;
|
|
refreshRate = 170;
|
|
x = 1080;
|
|
y = 215;
|
|
background = lib.custom.relativeToRoot "assets/wallpapers/barren_desert.jpg";
|
|
}
|
|
];
|
|
}
|