marleyos/hosts/nyx/default.nix
punkfairie 8b06796596
fix: disable nvidia settings
apparently these were never enabled before. jesus
2025-06-01 21:02:01 -07:00

35 lines
655 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}" = {
marleyos = {
shell.niri.monitors = ["DP-1" "HDMI-A-1"];
programs.calibre = enabled;
services.syncthing = enabled;
};
home.stateVersion = "24.05";
};
system.stateVersion = "24.05";
}