fix(users/tazjin): fix warnings for renamed NixOS options

Change-Id: I1bb9c1bdcf61d0216177bf3454467c6c80649893
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11032
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
Vincent Ambo 2024-02-26 14:43:05 +03:00 committed by tazjin
parent 3dfba5901b
commit 3a8afc973b
3 changed files with 7 additions and 7 deletions

View file

@ -108,7 +108,7 @@ lib.fix (self: {
programs.mosh.enable = true;
fonts = {
fonts = [ pkgs.jetbrains-mono ];
packages = [ pkgs.jetbrains-mono ];
fontconfig.defaultFonts.monospace = [ "JetBrains Mono" ];
};
@ -163,7 +163,7 @@ lib.fix (self: {
services.tailscale.enable = true;
# Allow sudo-ing via the forwarded SSH agent.
security.pam.enableSSHAgentAuth = true;
security.pam.sshAgentAuth.enable = true;
# NixOS 20.03 broke nginx and I can't be bothered to debug it
# anymore, all solution attempts have failed, so here's a

View file

@ -110,7 +110,7 @@ lib.fix (self: {
};
fonts = {
fonts = with pkgs; [
packages = with pkgs; [
corefonts
dejavu_fonts
jetbrains-mono
@ -156,8 +156,8 @@ lib.fix (self: {
services.xserver = {
enable = true;
layout = "us";
xkbOptions = "caps:super";
xkb.layout = "us";
xkb.options = "caps:super";
exportConfiguration = true;
videoDrivers = [ "amdgpu" ];
displayManager = {

View file

@ -15,8 +15,8 @@
xserver = {
enable = true;
layout = "us";
xkbOptions = "caps:super";
xkb.layout = "us";
xkb.options = "caps:super";
libinput.enable = true;