mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +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;
|
systemd.services."autovt@tty1".enable = mkOverride 50 false;
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.layout = cfg.layout;
|
services.xserver.xkb.layout = cfg.layout;
|
||||||
services.xserver.xkbOptions = "eurosign:e";
|
services.xserver.xkb.options = "eurosign:e";
|
||||||
|
|
||||||
|
|
||||||
aviallon.boot.cmdline = {
|
aviallon.boot.cmdline = {
|
||||||
|
|
@ -95,7 +95,7 @@ in {
|
||||||
programs.xwayland.enable = true;
|
programs.xwayland.enable = true;
|
||||||
|
|
||||||
# Enable touchpad support (enabled default in most desktopManager).
|
# Enable touchpad support (enabled default in most desktopManager).
|
||||||
services.xserver.libinput.enable = true;
|
services.libinput.enable = true;
|
||||||
|
|
||||||
# Enable color management
|
# Enable color management
|
||||||
services.colord.enable = true;
|
services.colord.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ in {
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
internal = true;
|
internal = true;
|
||||||
description = "Which nvtop package to use";
|
description = "Which nvtop package to use";
|
||||||
default = pkgs.nvtop-amd;
|
default = pkgs.nvtopPackages.amd;
|
||||||
type = myLib.types.package';
|
type = myLib.types.package';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -136,7 +136,7 @@ in {
|
||||||
|
|
||||||
services.avahi = {
|
services.avahi = {
|
||||||
enable = !generalCfg.minimal; # .lan/.local resolution
|
enable = !generalCfg.minimal; # .lan/.local resolution
|
||||||
nssmdns = true; # .lan/.local resolution
|
nssmdns4 = true; # .lan/.local resolution
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
reflector = true;
|
reflector = true;
|
||||||
publish = {
|
publish = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue