mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
23 lines
448 B
Nix
23 lines
448 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/ai.nix
|
|
];
|
|
|
|
monitors = [
|
|
{
|
|
name = "eDP-1";
|
|
primary = true;
|
|
width = 2256;
|
|
height = 1504;
|
|
refreshRate = 60;
|
|
background = lib.custom.relativeToRoot "assets/wallpapers/kali_lol.jpg";
|
|
}
|
|
];
|
|
}
|