diff --git a/hosts/desktops/common/boot.nix b/hosts/desktops/common/boot.nix index c09f714..590c5fb 100644 --- a/hosts/desktops/common/boot.nix +++ b/hosts/desktops/common/boot.nix @@ -8,10 +8,6 @@ loader.efi.efiSysMountPoint = "/boot/efi"; kernelPackages = pkgs.linuxPackages_xanmod_latest; extraModprobeConfig = ''options bluetooth disable_ertm=1''; - kernelModules = [ - "i2c-dev" # Required for arduino dev - "i2c-piix4" # Required for arduino dev - ]; kernelParams = [ "quiet" "splash" diff --git a/hosts/desktops/common/packages.nix b/hosts/desktops/common/packages.nix index 8c97094..0a19021 100644 --- a/hosts/desktops/common/packages.nix +++ b/hosts/desktops/common/packages.nix @@ -2,7 +2,6 @@ { environment.systemPackages = with pkgs; [ - arduino ark aspell aspellDicts.de diff --git a/hosts/desktops/io.nix b/hosts/desktops/io.nix index d39a788..65abe6e 100644 --- a/hosts/desktops/io.nix +++ b/hosts/desktops/io.nix @@ -19,13 +19,20 @@ memoryPercent = 100; }; - boot.kernelParams = [ - "nosgx" - "i915.fastboot=1" - "mem_sleep_default=deep" - ]; + boot = { + kernelParams = [ + "nosgx" + "i915.fastboot=1" + "mem_sleep_default=deep" + ]; + kernelModules = [ + "i2c-dev" # Required for arduino dev + "i2c-piix4" # Required for arduino dev + ]; + }; environment.systemPackages = with pkgs; [ + arduino gnome-network-displays maliit-keyboard rnote