Fix nix warnings

This commit is contained in:
GHOSCHT 2024-12-02 12:43:57 +01:00
parent 16f352e90d
commit 470af133c0
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
5 changed files with 8 additions and 6 deletions

View file

@ -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 = [

View file

@ -16,5 +16,5 @@
};
};
console.keyMap = "de";
services.xserver.layout = "de";
services.xserver.xkb.layout = "de";
}

View file

@ -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;
};

View file

@ -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];

View file

@ -9,7 +9,8 @@
printing.enable = true;
avahi = {
enable = true;
nssmdns = true;
nssmdns4 = true;
nssmdns6 = true;
# for a WiFi printer
openFirewall = true;
};