1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 03:51:07 +01:00

5 Commits

Author SHA1 Message Date
9a3499ab6c feat(ful): limit to 1 configuration
this circumvents space issues on the /boot partition
2022-05-21 23:07:19 +02:00
92442db877 feat(ful): set root password 2022-05-21 23:06:49 +02:00
d2f85ab972 chore(ful): disable monitoring for now 2022-05-21 23:06:33 +02:00
b593f45ec2 chore(ful): move IP 2022-05-21 23:06:13 +02:00
e9b09a3e67 chore: bye youtube-dl 2022-05-21 23:05:43 +02:00
5 changed files with 9 additions and 5 deletions

View File

@@ -134,7 +134,6 @@ in {
xournalpp # for annotating pdfs
pdfpc # presenter console for pdf slides
hc # print files as qr codes
youtubeDL
yt-dlp
espeak
bc # calculator

View File

@@ -68,7 +68,7 @@ in {
port = sshPort;
};
ful = {
hostname = "130.61.209.15";
hostname = "130.61.217.114";
user = "root";
port = sshPort;
};

View File

@@ -122,7 +122,7 @@
host =
if name != "ful"
then "${name}.r"
else "130.61.209.15";
else "130.61.217.114";
};
};
});

View File

@@ -8,7 +8,7 @@
in {
imports = [
./hardware-configuration.nix
<niveum/configs/monitoring.nix>
# <niveum/configs/monitoring.nix>
<niveum/configs/nix.nix>
<niveum/configs/save-space.nix>
<niveum/configs/spacetime.nix>
@@ -42,5 +42,7 @@ in {
email = kieran.email;
};
users.users.root.passwordFile = toString <system-secrets/root.password>;
environment.systemPackages = [pkgs.vim pkgs.git pkgs.tmux pkgs.python3];
}

View File

@@ -8,7 +8,10 @@
boot = {
loader = {
systemd-boot.enable = true;
systemd-boot = {
enable = true;
configurationLimit = 1;
};
efi.canTouchEfiVariables = true;
};
initrd = {