Compare commits
2 commits
d073ec8714
...
cd1736f899
Author | SHA1 | Date | |
---|---|---|---|
cd1736f899 | |||
882f45a1d6 |
2 changed files with 14 additions and 3 deletions
|
@ -90,6 +90,7 @@ in {
|
||||||
libreoffice
|
libreoffice
|
||||||
libsecret
|
libsecret
|
||||||
lxappearance
|
lxappearance
|
||||||
|
mpv
|
||||||
mumble
|
mumble
|
||||||
neofetch
|
neofetch
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
|
|
@ -4,17 +4,27 @@ let
|
||||||
unstable = import <nixos-unstable> {};
|
unstable = import <nixos-unstable> {};
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
# embedded
|
||||||
arduino
|
arduino
|
||||||
avrdude
|
avrdude
|
||||||
|
gcc-arm-embedded
|
||||||
|
openocd
|
||||||
pkgsCross.avr.avrlibc
|
pkgsCross.avr.avrlibc
|
||||||
pkgsCross.avr.libcCross
|
|
||||||
pkgsCross.avr.buildPackages.gcc8
|
|
||||||
pkgsCross.avr.buildPackages.binutils
|
pkgsCross.avr.buildPackages.binutils
|
||||||
unstable.cura
|
pkgsCross.avr.buildPackages.gcc8
|
||||||
|
pkgsCross.avr.libcCross
|
||||||
|
|
||||||
|
cura
|
||||||
openscad
|
openscad
|
||||||
kicad
|
kicad
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# stm32 debugger
|
||||||
|
users.extraGroups.plugdev = { };
|
||||||
|
users.extraUsers.stefan.extraGroups = [ "plugdev" "dialout" ];
|
||||||
|
services.udev.packages = [ pkgs.openocd ];
|
||||||
|
|
||||||
|
|
||||||
fileSystems."/mnt/nfs" = {
|
fileSystems."/mnt/nfs" = {
|
||||||
device = "10.1.20.29:/srv/nfs";
|
device = "10.1.20.29:/srv/nfs";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue