28 lines
527 B
Nix
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";
|
|
}
|