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

29 lines
487 B
Nix
Raw Normal View History

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