1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

chore: catullus -> toum

This commit is contained in:
Kierán Meinhardt
2020-10-18 14:02:14 +02:00
parent 0ff450138f
commit 2106247cf5
9 changed files with 17 additions and 5 deletions

View File

@@ -222,7 +222,6 @@ in {
{
networking.hosts = {
"192.168.178.1" = [ "fritz.box" ];
"192.168.178.24" = [ "catullus.local" ];
};
}
{ i18n.defaultLocale = "en_GB.UTF-8"; }

View File

@@ -47,7 +47,7 @@ in {
user = "kfm";
port = sshPort;
};
catullus = {
toum = {
hostname = "catullus.r";
user = "kfm";
port = sshPort;

View File

@@ -37,6 +37,15 @@ in {
};
}
{ services.keybase.enable = true; }
{
sound.enable = true;
hardware.pulseaudio.enable = true;
boot.loader.raspberryPi.firmwareConfig = ''
dtparam=audio=on
'';
}
{ boot.kernelParams = [ "console=ttyS1,115200n8" ]; } # Enable serial console
{
imports = [ <stockholm/krebs/3modules/urlwatch.nix> ];
@@ -59,7 +68,7 @@ in {
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "catullus";
networking.hostName = "toum";
time.timeZone = "Europe/Berlin";
@@ -74,7 +83,11 @@ in {
environment.variables.TERM = "linux";
environment.variables.HTOPRC = toString <niveum/dot/htoprc>;
environment.systemPackages = with pkgs; [ git vim htop wget reptyr ];
environment.systemPackages = with pkgs; [
git vim htop wget reptyr
raspberrypi-tools
];
users.mutableUsers = false;
users.users.me = {
@@ -112,5 +125,5 @@ in {
mode = "400";
};
system.stateVersion = "18.09";
system.stateVersion = "20.03";
}