This commit is contained in:
Ehmry - 2019-09-02 10:09:44 +02:00
parent b7f8a98276
commit cf4ef255c6
4 changed files with 13 additions and 9 deletions

View File

@ -12,9 +12,9 @@ in {
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../lib/admins.nix ../../lib/admins.nix
../../common.nix ../../lib/common/common.nix
../../users.nix ../../lib/users.nix
../../mpd.nix ../../lib/mpd.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
@ -192,12 +192,6 @@ in {
type "pulse" type "pulse"
name "/proc" name "/proc"
} }
audio_output {
type "pulse"
name "SDK"
server "dacbert.hq.c3d2.de"
}
''; '';
services.caddy = { services.caddy = {

6
lib/motd Normal file
View File

@ -0,0 +1,6 @@
______ ______
/ / / / / /\ \ \
/ / / / / / \ \ \
\ \ \ \ / / / / /
\_\_\_\/_/ /_/_/

View File

@ -9,12 +9,14 @@ let
{ {
dbFile = null; dbFile = null;
musicDirectory = "/mnt/storage/Music"; musicDirectory = "/mnt/storage/Music";
/*
extraConfig = '' extraConfig = ''
database { database {
plugin "proxy" plugin "proxy"
host "storage-ng.hq.c3d2.de" host "storage-ng.hq.c3d2.de"
} }
''; '';
*/
}; };
in in
{ {

View File

@ -1,6 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
users.motd = builtins.readFile ./motd;
users.users.k-ot = { users.users.k-ot = {
packages = with pkgs; packages = with pkgs;
[ screen tmux ]; [ screen tmux ];