clean arduino-ide
All checks were successful
nixos config pipeline / show-flake (push) Successful in 26s
nixos config pipeline / deploy (push) Successful in 53s

This commit is contained in:
smayzy 2026-02-28 14:44:36 +01:00
parent 8c7713c8bc
commit 199e90e1f8
5 changed files with 2 additions and 29 deletions

View File

@ -11,7 +11,6 @@
./games
./groups
./hardware
./ide
./isolation
./networking
./office

View File

@ -27,7 +27,6 @@ in
dev.enable = true;
gaming.enable = true;
};
arduino.enable = true;
tor.enable = true;
chromium.enable = true;
firejail.enable = true;
@ -52,6 +51,7 @@ in
kicad
ghidra
calibre
arduino-ide
neomutt
pass
isync

View File

@ -31,7 +31,6 @@ in
dev.enable = true;
media.enable = true;
};
arduino.enable = true;
tor.enable = true;
alacritty.enable = true;
chromium.enable = true;
@ -58,6 +57,7 @@ in
prismlauncher
kicad
calibre
arduino-ide
neomutt
pass
isync

View File

@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.arduino.enable = mkOption {
type = types.bool;
default = false;
description = "arduino ide";
};
config = mkIf config.smayzy.arduino.enable {
environment.systemPackages = with pkgs; [ arduino-ide ];
};
}

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./arduino.nix
];
}