Only install omarchy on desktop machines.

This commit is contained in:
2025-10-25 11:45:41 +01:00
parent bd473d1ad2
commit 5ce0e0e1df
4 changed files with 40 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
# Desktop profile: Graphical desktop with Hyprland
# Extends workstation-node with desktop environment
@@ -6,6 +6,9 @@
./workstation-node.nix
];
# omarchy-nix enables NetworkManager, but we use useDHCP globally
networking.networkmanager.enable = lib.mkForce false;
# Enable Hyprland (Wayland compositor)
programs.hyprland = {
enable = true;

View File

@@ -1,3 +1,4 @@
{ lib, ... }:
{
networking = {
useDHCP = true;