mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Treewide] fix renamed options and packages
This commit is contained in:
parent
3ab3540676
commit
cc51a26737
3 changed files with 5 additions and 5 deletions
|
|
@ -68,8 +68,8 @@ in {
|
|||
systemd.services."autovt@tty1".enable = mkOverride 50 false;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver.layout = cfg.layout;
|
||||
services.xserver.xkbOptions = "eurosign:e";
|
||||
services.xserver.xkb.layout = cfg.layout;
|
||||
services.xserver.xkb.options = "eurosign:e";
|
||||
|
||||
|
||||
aviallon.boot.cmdline = {
|
||||
|
|
@ -95,7 +95,7 @@ in {
|
|||
programs.xwayland.enable = true;
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
services.xserver.libinput.enable = true;
|
||||
services.libinput.enable = true;
|
||||
|
||||
# Enable color management
|
||||
services.colord.enable = true;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ in {
|
|||
package = mkOption {
|
||||
internal = true;
|
||||
description = "Which nvtop package to use";
|
||||
default = pkgs.nvtop-amd;
|
||||
default = pkgs.nvtopPackages.amd;
|
||||
type = myLib.types.package';
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ in {
|
|||
|
||||
services.avahi = {
|
||||
enable = !generalCfg.minimal; # .lan/.local resolution
|
||||
nssmdns = true; # .lan/.local resolution
|
||||
nssmdns4 = true; # .lan/.local resolution
|
||||
openFirewall = true;
|
||||
reflector = true;
|
||||
publish = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue