mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
21 lines
426 B
Nix
21 lines
426 B
Nix
{lib, ...}: {
|
|
imports = [
|
|
common/core
|
|
common/optional/desktops/sway
|
|
common/optional/browsers/firefox.nix
|
|
common/optional/comms
|
|
common/optional/media
|
|
common/optional/gaming
|
|
];
|
|
|
|
monitors = [
|
|
{
|
|
name = "eDP-1";
|
|
primary = true;
|
|
width = 2256;
|
|
height = 1504;
|
|
refreshRate = 60;
|
|
background = lib.custom.relativeToRoot "assets/wallpapers/kali_lol.jpg";
|
|
}
|
|
];
|
|
}
|