treewide: rename deprecated options
This commit is contained in:
parent
d99a56cd95
commit
cc835da43c
5 changed files with 13 additions and 13 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
fonts = {
|
fonts = {
|
||||||
enableDefaultFonts = true;
|
enableDefaultPackages = true;
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
serif = [ "NotoSerif" ];
|
serif = [ "NotoSerif" ];
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
monospace = [ "CascadiaCode" ];
|
monospace = [ "CascadiaCode" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
fonts = with pkgs; [
|
packages = with pkgs; [
|
||||||
material-symbols
|
material-symbols
|
||||||
material-icons
|
material-icons
|
||||||
cascadia-code
|
cascadia-code
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ ... }: {
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
displayManager = {
|
displayManager = {
|
||||||
xserverArgs = [
|
xserverArgs = [
|
||||||
|
|
@ -6,14 +6,14 @@
|
||||||
"-arinterval 15"
|
"-arinterval 15"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
libinput = {
|
xkb.options = "caps:escape";
|
||||||
enable = true;
|
};
|
||||||
mouse = {
|
services.libinput = {
|
||||||
accelSpeed = "0";
|
enable = true;
|
||||||
accelProfile = "flat";
|
mouse = {
|
||||||
};
|
accelSpeed = "0";
|
||||||
|
accelProfile = "flat";
|
||||||
};
|
};
|
||||||
xkbOptions = "caps:escape";
|
|
||||||
};
|
};
|
||||||
console.useXkbConfig = true;
|
console.useXkbConfig = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
}
|
}
|
||||||
// (if !enableGUI then {} else {
|
// (if !enableGUI then {} else {
|
||||||
programs.adb.enable = true;
|
programs.adb.enable = true;
|
||||||
hardware.opengl.extraPackages = with pkgs; [
|
hardware.graphics.extraPackages = with pkgs; [
|
||||||
vaapiIntel
|
vaapiIntel
|
||||||
vaapiVdpau
|
vaapiVdpau
|
||||||
libvdpau-va-gl
|
libvdpau-va-gl
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" "wireshark" ];
|
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" "wireshark" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
uid = 1001;
|
uid = 1001;
|
||||||
passwordFile = config.age.secrets.passwd.path;
|
hashedPasswordFile = config.age.secrets.passwd.path;
|
||||||
};
|
};
|
||||||
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
|
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
|
||||||
home = {
|
home = {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" ];
|
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
uid = 1001;
|
uid = 1001;
|
||||||
passwordFile = config.age.secrets.passwd.path;
|
hashedPasswordFile = config.age.secrets.passwd.path;
|
||||||
};
|
};
|
||||||
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
|
home-manager.users.rin = { config, enableGUI, lib, pkgs, ... }: {
|
||||||
home = {
|
home = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue