Fix nix warnings
This commit is contained in:
parent
16f352e90d
commit
470af133c0
5 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
{inputs, ...}: {
|
||||
imports = [inputs.flatpaks.homeManagerModules.default];
|
||||
imports = [inputs.flatpaks.homeManagerModules.declarative-flatpak];
|
||||
services.flatpak = {
|
||||
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
||||
packages = [
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
};
|
||||
};
|
||||
console.keyMap = "de";
|
||||
services.xserver.layout = "de";
|
||||
services.xserver.xkb.layout = "de";
|
||||
}
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
imports = [./global.nix ./x11.nix ./wayland.nix];
|
||||
|
||||
services = {
|
||||
libinput.enable = true;
|
||||
xserver = {
|
||||
desktopManager.gnome = {
|
||||
enable = true;
|
||||
};
|
||||
libinput.enable = true;
|
||||
modules = [pkgs.xf86_input_wacom];
|
||||
wacom.enable = true;
|
||||
};
|
||||
|
|
|
@ -5,11 +5,12 @@
|
|||
...
|
||||
}: {
|
||||
services = {
|
||||
libinput.enable = true; # Enable touchpad support
|
||||
libinput.touchpad.naturalScrolling = true;
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
xserver = {
|
||||
enable = true;
|
||||
# Enable touchpad support
|
||||
libinput.enable = true;
|
||||
# Remove xterm terminal
|
||||
excludePackages = with pkgs; [xterm];
|
||||
modules = [pkgs.xf86_input_wacom];
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
printing.enable = true;
|
||||
avahi = {
|
||||
enable = true;
|
||||
nssmdns = true;
|
||||
nssmdns4 = true;
|
||||
nssmdns6 = true;
|
||||
# for a WiFi printer
|
||||
openFirewall = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue