From 692f2bfb1c189f6de4cb733f9b1c68a2b2e56eef Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 26 Feb 2024 14:43:10 +0300 Subject: fix(users/wpcarro): fix warnings for renamed NixOS options Change-Id: I384aa75467b7e1be08779dc6d916ba8fc0ea74c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11033 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: tazjin Reviewed-by: sterni --- users/wpcarro/nixos/tarasco/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'users/wpcarro/nixos/tarasco/default.nix') diff --git a/users/wpcarro/nixos/tarasco/default.nix b/users/wpcarro/nixos/tarasco/default.nix index a888ab6b4ead..7033caa11ab8 100644 --- a/users/wpcarro/nixos/tarasco/default.nix +++ b/users/wpcarro/nixos/tarasco/default.nix @@ -58,8 +58,8 @@ in xserver = { enable = true; - layout = "us"; - xkbOptions = "caps:escape"; + xkb.layout = "us"; + xkb.options = "caps:escape"; displayManager = { # Give EXWM permission to control the session (from tazjin's setup). sessionCommands = "${pkgs.xorg.xhost}/bin/xhost +SI:localhost:$USER"; @@ -101,7 +101,7 @@ in security.sudo.wheelNeedsPassword = false; fonts = { - fonts = with pkgs; [ + packages = with pkgs; [ jetbrains-mono ]; -- cgit 1.4.1