marleyos/hosts/nyx/default.nix
2025-05-25 20:06:03 -07:00

29 lines
509 B
Nix

{
marleylib,
config,
...
}: let
inherit (marleylib.module) enabled;
inherit (config.marleycfg.my) name;
in {
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
networking.hostName = "nyx";
# For local dev.
networking.firewall.allowedTCPPorts = [8080];
marleycfg.profiles.desktop = true;
marleyos = {
hardware = {
nvidia = enabled;
};
};
home-manager.users."${name}" = {
home.stateVersion = "24.05";
};
system.stateVersion = "24.05";
}