Move arduino dev stack to io only
This commit is contained in:
parent
05dac860fa
commit
9add92c1a4
3 changed files with 12 additions and 10 deletions
|
|
@ -8,10 +8,6 @@
|
||||||
loader.efi.efiSysMountPoint = "/boot/efi";
|
loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
||||||
extraModprobeConfig = ''options bluetooth disable_ertm=1'';
|
extraModprobeConfig = ''options bluetooth disable_ertm=1'';
|
||||||
kernelModules = [
|
|
||||||
"i2c-dev" # Required for arduino dev
|
|
||||||
"i2c-piix4" # Required for arduino dev
|
|
||||||
];
|
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
"quiet"
|
"quiet"
|
||||||
"splash"
|
"splash"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
arduino
|
|
||||||
ark
|
ark
|
||||||
aspell
|
aspell
|
||||||
aspellDicts.de
|
aspellDicts.de
|
||||||
|
|
|
||||||
|
|
@ -19,13 +19,20 @@
|
||||||
memoryPercent = 100;
|
memoryPercent = 100;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelParams = [
|
boot = {
|
||||||
"nosgx"
|
kernelParams = [
|
||||||
"i915.fastboot=1"
|
"nosgx"
|
||||||
"mem_sleep_default=deep"
|
"i915.fastboot=1"
|
||||||
];
|
"mem_sleep_default=deep"
|
||||||
|
];
|
||||||
|
kernelModules = [
|
||||||
|
"i2c-dev" # Required for arduino dev
|
||||||
|
"i2c-piix4" # Required for arduino dev
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
arduino
|
||||||
gnome-network-displays
|
gnome-network-displays
|
||||||
maliit-keyboard
|
maliit-keyboard
|
||||||
rnote
|
rnote
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue