Local changes
This commit is contained in:
parent
3932b91889
commit
c534e786cc
|
@ -30,13 +30,17 @@ in {
|
|||
description = "Slynk Common Lisp server.";
|
||||
|
||||
serviceConfig = {
|
||||
# Type = "simple";
|
||||
ExecStartPre = "${pkgs.lispPackages.quicklisp}/bin/quicklisp init";
|
||||
ExecStart = "${pkgs.sbcl-with-libs}/bin/sbcl --load ${initScript cfg.port}";
|
||||
Restart = "on-failure";
|
||||
PIDFile = "/run/slynk.$USERNAME.pid";
|
||||
};
|
||||
|
||||
path = with pkgs; [
|
||||
glibc # for getent
|
||||
file
|
||||
];
|
||||
|
||||
environment = {
|
||||
LD_LIBRARY_PATH = "${pkgs.openssl_1_1.out}/lib:${pkgs.libuv.out}/lib";
|
||||
};
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
dpkg
|
||||
emacs
|
||||
fail2ban
|
||||
file
|
||||
fortune
|
||||
gcc
|
||||
git
|
||||
|
@ -54,6 +55,7 @@
|
|||
lshw
|
||||
mkpasswd
|
||||
ncurses5
|
||||
nix-index
|
||||
nmap
|
||||
oidentd
|
||||
openldap
|
||||
|
@ -65,6 +67,7 @@
|
|||
pwgen
|
||||
racket
|
||||
ruby
|
||||
rubyPackages.nokogiri
|
||||
rustc
|
||||
sbcl
|
||||
sbclBootstrap
|
||||
|
|
|
@ -32,6 +32,13 @@ in {
|
|||
|
||||
# Until Comcast gets it's shit together... :(
|
||||
enableIPv6 = false;
|
||||
|
||||
# Necessary to make sure than Kerberos and Avahi both work (the former
|
||||
# needs the full reverse-lookup name of the server, the latter wants
|
||||
# `hostname` to return just the host itself.
|
||||
hosts = {
|
||||
"127.0.0.1" = [ "${config.networking.hostName}.${local-domain}" config.networking.hostName];
|
||||
};
|
||||
};
|
||||
|
||||
users.extraUsers = {
|
||||
|
|
|
@ -17,10 +17,12 @@ in {
|
|||
environment.systemPackages = with pkgs; [
|
||||
androidenv.androidPkgs_9_0.platform-tools
|
||||
android-studio
|
||||
dnsproxy
|
||||
glxinfo
|
||||
hll2380dw-cups
|
||||
nodejs
|
||||
signal-desktop
|
||||
thunderbird
|
||||
usbutils
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in New Issue