From ec38b5e59547f97281e1c8475ba3891dbeaa0b81 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Thu, 24 Jul 2025 14:43:29 -0400 Subject: [PATCH] home for nyx --- home/crow/Nyx.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 home/crow/Nyx.nix diff --git a/home/crow/Nyx.nix b/home/crow/Nyx.nix new file mode 100644 index 0000000..6c3a9fb --- /dev/null +++ b/home/crow/Nyx.nix @@ -0,0 +1,22 @@ +{lib, ...}: { + imports = [ + common/core + common/optional/desktops/sway + common/optional/desktops/niri.nix + common/optional/browsers/firefox.nix + common/optional/comms + common/optional/media + common/optional/gaming + ]; + + monitors = [ + { + name = "eDP-1"; + primary = true; + width = 2650; + height = 1440; + refreshRate = 60; + background = lib.custom.relativeToRoot "assets/wallpapers/kali_lol.jpg"; + } + ]; +}