marleyos/hosts/nyx/default.nix
2025-05-25 14:14:44 -07:00

28 lines
527 B
Nix

{marleylib, ...}: let
inherit (marleylib.module) enabled;
in {
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
networking.hostName = "nyx";
# For local dev.
networking.firewall.allowedTCPPorts = [8080];
marleyos = {
profiles = {
desktop = enabled;
hardware.nvidia = enabled;
};
# mounts.babeshare = enabled;
# bundles.desktop = enabled;
# wayland.niri = enabled;
# services = {
# ly = enabled;
# };
};
system.stateVersion = "24.05";
}