marleyos/systems/x86_64-linux/nyx/default.nix

25 lines
470 B
Nix
Raw Normal View History

{lib, ...}: let
2025-01-06 01:44:48 +00:00
inherit (lib.marleyos) enabled;
in {
2025-01-11 01:19:17 +00:00
imports = [./hardware-configuration.nix ./mounts.nix ./autorandr.nix];
2025-01-06 01:44:48 +00:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nyx";
2025-01-07 04:22:41 +00:00
marleyos = {
2025-01-09 16:08:30 +00:00
hasNvidia = true;
2025-01-07 04:22:41 +00:00
mounts.babeshare = enabled;
2025-01-09 16:08:30 +00:00
bundles.desktop = enabled;
wayland.hyprland = enabled;
2025-01-09 16:08:30 +00:00
services = {
ly = enabled;
};
2025-01-07 04:22:41 +00:00
};
2025-01-06 01:44:48 +00:00
system.stateVersion = "24.05";
}