feat: mbp eris server eaglemode
This commit is contained in:
parent
7b7d64bebf
commit
0b59cc1453
4 changed files with 16 additions and 3 deletions
|
@ -76,7 +76,18 @@
|
||||||
../modules/local-dev.nix
|
../modules/local-dev.nix
|
||||||
../modules/nixos.nix
|
../modules/nixos.nix
|
||||||
];
|
];
|
||||||
|
services.eris-server = {
|
||||||
|
enable = true;
|
||||||
|
backends = [
|
||||||
|
"badger+file:///var/eris?put&get" # local one on /var/eris
|
||||||
|
# "coap+tcp://eris.example.com:5683?get" # an online one
|
||||||
|
];
|
||||||
|
mountpoint = "/mnt/media/eris"; # useful to mount eris-fs folders
|
||||||
|
listenHttp = ":8080"; # or "[::1]:8080"
|
||||||
|
listenCoap = ":5683"; # or "[::1]:5683"
|
||||||
|
decode = true; # for http access via https://127.0.0.1:8080/uri-res/N2R?urn:eris:...
|
||||||
|
package = pkgs.eris-go; # default package
|
||||||
|
};
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
# on your system were taken. It's perfectly fine and recommended to leave
|
# on your system were taken. It's perfectly fine and recommended to leave
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
SUBSYSTEM=="pci", KERNEL=="0000:00:14.0", ATTR{power/wakeup}="disabled"
|
SUBSYSTEM=="pci", KERNEL=="0000:00:14.0", ATTR{power/wakeup}="disabled"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
services.logind.extraConfig = ''
|
services.logind.extraConfig = ''
|
||||||
RuntimeDirectorySize=8G
|
RuntimeDirectorySize=8G
|
||||||
HandleLidSwitchDocked=ignore
|
HandleLidSwitchDocked=ignore
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -130,6 +130,7 @@
|
||||||
#rose-pine-gtk-theme
|
#rose-pine-gtk-theme
|
||||||
#rose-pine-icon-theme
|
#rose-pine-icon-theme
|
||||||
#element-desktop
|
#element-desktop
|
||||||
|
eaglemode
|
||||||
filezilla
|
filezilla
|
||||||
gimp-with-plugins
|
gimp-with-plugins
|
||||||
hunspell
|
hunspell
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
dart-sass
|
dart-sass
|
||||||
dbeaver-bin
|
dbeaver-bin
|
||||||
docker-compose
|
docker-compose
|
||||||
|
eris-go
|
||||||
gcc
|
gcc
|
||||||
go
|
go
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
|
|
Loading…
Reference in a new issue