treewide: rename deprecated options

This commit is contained in:
LavaDesu 2025-03-17 22:13:11 +11:00
parent d99a56cd95
commit cc835da43c
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 13 additions and 13 deletions

View file

@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }: {
fonts = {
enableDefaultFonts = true;
enableDefaultPackages = true;
fontconfig = {
defaultFonts = {
serif = [ "NotoSerif" ];
@ -8,7 +8,7 @@
monospace = [ "CascadiaCode" ];
};
};
fonts = with pkgs; [
packages = with pkgs; [
material-symbols
material-icons
cascadia-code

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: {
{ ... }: {
services.xserver = {
displayManager = {
xserverArgs = [
@ -6,14 +6,14 @@
"-arinterval 15"
];
};
libinput = {
enable = true;
mouse = {
accelSpeed = "0";
accelProfile = "flat";
};
xkb.options = "caps:escape";
};
services.libinput = {
enable = true;
mouse = {
accelSpeed = "0";
accelProfile = "flat";
};
xkbOptions = "caps:escape";
};
console.useXkbConfig = true;
}

View file

@ -24,7 +24,7 @@
}
// (if !enableGUI then {} else {
programs.adb.enable = true;
hardware.opengl.extraPackages = with pkgs; [
hardware.graphics.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl

View file

@ -5,7 +5,7 @@
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" "wireshark" ];
shell = pkgs.zsh;
uid = 1001;
passwordFile = config.age.secrets.passwd.path;
hashedPasswordFile = config.age.secrets.passwd.path;
};
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
home = {

View file

@ -5,7 +5,7 @@
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" ];
shell = pkgs.zsh;
uid = 1001;
passwordFile = config.age.secrets.passwd.path;
hashedPasswordFile = config.age.secrets.passwd.path;
};
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
home = {