Move arduino dev stack to io only

This commit is contained in:
rotterdam 2023-02-11 11:52:45 -03:00
parent 05dac860fa
commit 9add92c1a4
3 changed files with 12 additions and 10 deletions

View file

@ -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"

View file

@ -2,7 +2,6 @@
{
environment.systemPackages = with pkgs; [
arduino
ark
aspell
aspellDicts.de

View file

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