diff --git a/profiles/graphical/xserver.nix b/profiles/graphical/xserver.nix index 4e78349..5a79ea6 100644 --- a/profiles/graphical/xserver.nix +++ b/profiles/graphical/xserver.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ pkgs, lib, ... }: { services.xserver.enable = true; environment.systemPackages = with pkgs; [ @@ -9,4 +9,6 @@ blugon ]; + + info.monitors = lib.mkDefault 1; }