Local changes

This commit is contained in:
root 2020-06-25 20:46:18 -07:00
parent 3932b91889
commit c534e786cc
4 changed files with 17 additions and 1 deletions

View File

@ -30,13 +30,17 @@ in {
description = "Slynk Common Lisp server."; description = "Slynk Common Lisp server.";
serviceConfig = { serviceConfig = {
# Type = "simple";
ExecStartPre = "${pkgs.lispPackages.quicklisp}/bin/quicklisp init"; ExecStartPre = "${pkgs.lispPackages.quicklisp}/bin/quicklisp init";
ExecStart = "${pkgs.sbcl-with-libs}/bin/sbcl --load ${initScript cfg.port}"; ExecStart = "${pkgs.sbcl-with-libs}/bin/sbcl --load ${initScript cfg.port}";
Restart = "on-failure"; Restart = "on-failure";
PIDFile = "/run/slynk.$USERNAME.pid"; PIDFile = "/run/slynk.$USERNAME.pid";
}; };
path = with pkgs; [
glibc # for getent
file
];
environment = { environment = {
LD_LIBRARY_PATH = "${pkgs.openssl_1_1.out}/lib:${pkgs.libuv.out}/lib"; LD_LIBRARY_PATH = "${pkgs.openssl_1_1.out}/lib:${pkgs.libuv.out}/lib";
}; };

View File

@ -32,6 +32,7 @@
dpkg dpkg
emacs emacs
fail2ban fail2ban
file
fortune fortune
gcc gcc
git git
@ -54,6 +55,7 @@
lshw lshw
mkpasswd mkpasswd
ncurses5 ncurses5
nix-index
nmap nmap
oidentd oidentd
openldap openldap
@ -65,6 +67,7 @@
pwgen pwgen
racket racket
ruby ruby
rubyPackages.nokogiri
rustc rustc
sbcl sbcl
sbclBootstrap sbclBootstrap

View File

@ -32,6 +32,13 @@ in {
# Until Comcast gets it's shit together... :( # Until Comcast gets it's shit together... :(
enableIPv6 = false; 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 = { users.extraUsers = {

View File

@ -17,10 +17,12 @@ in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
androidenv.androidPkgs_9_0.platform-tools androidenv.androidPkgs_9_0.platform-tools
android-studio android-studio
dnsproxy
glxinfo glxinfo
hll2380dw-cups hll2380dw-cups
nodejs nodejs
signal-desktop signal-desktop
thunderbird
usbutils usbutils
]; ];