diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-01-26 17:42:10 +0000 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-01-26 17:42:10 +0000 |
| commit | 053d4ebb58ea9a9d0e3ee98c14f1f5c375f57556 (patch) | |
| tree | e1ee576269532ca638d9d7d90c0b216d63cf9edc /machines/zenbook/configuration.nix | |
| parent | e4801c21871f82a8a427b6657d87ecb9a9202c13 (diff) | |
| parent | fb96c957c3b0d1226d965195ab637f1be6250618 (diff) | |
merging zenbook branch to bosco
Diffstat (limited to 'machines/zenbook/configuration.nix')
| -rw-r--r-- | machines/zenbook/configuration.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix index 47aecfa..41dd5f0 100644 --- a/machines/zenbook/configuration.nix +++ b/machines/zenbook/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running `nixos-help`). -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { imports = [ @@ -32,9 +32,10 @@ services.xserver.displayManager.sddm = { enableHidpi = true; - # settings = { - # serverArguments = "-nolisten tcp -dpi 170"; - # }; + wayland.enable = true; + settings = { + Wayland.serverArguments = "-nolisten tcp -dpi 170"; + }; }; networking = { @@ -56,7 +57,8 @@ }; # Set your time zone. - time.timeZone = "US/Mountain"; + time.timeZone = lib.mkDefault "US/Mountain"; + services.automatic-timezoned.enable = true; # time.timeZone = "Europe/Stockholm"; # time.timeZone = "UTC"; |
