mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
Updated deprecated option names
This commit is contained in:
parent
2d4a3c65b0
commit
4dbeccd818
|
@ -8,7 +8,7 @@
|
|||
"virbr0"
|
||||
];
|
||||
enable = true;
|
||||
qemuRunAsRoot = false;
|
||||
qemu.runAsRoot = false;
|
||||
};
|
||||
boot.extraModulePackages = with config.boot.kernelPackages; [ virtualbox ];
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# Enable printing
|
||||
services.printing.enable = true;
|
||||
services.avahi.enable = true;
|
||||
services.avahi.nssmdns = true;
|
||||
services.avahi.nssmdns4 = true;
|
||||
services.avahi.openFirewall = true;
|
||||
environment.systemPackages = [ pkgs.cups-filters ];
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
# Fonts are nice to have
|
||||
fonts.fonts = with pkgs; [
|
||||
fonts.packages = with pkgs; [
|
||||
# Fonts
|
||||
(nerdfonts.override { fonts = [ "Inconsolata" ]; })
|
||||
powerline
|
||||
|
|
|
@ -23,9 +23,11 @@
|
|||
# Configure xwayland
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
xkbOptions = "caps:escape";
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
options = "caps:escape";
|
||||
};
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
|
|
Loading…
Reference in a new issue